DF-Walkthrough/misc/_static/dftext.css

41 lines
1.3 KiB
CSS
Raw Normal View History

/* make sure to sync this with the base theme's css filename */
@import url("alabaster.css");
2015-09-27 23:45:05 +10:00
.kbd {
2015-09-27 23:45:05 +10:00
/* Keybinding CSS from the DF wiki; applies to :kbd:`` directives.
* Use this directive for all keypresses, to make them look like keys.
*/
border: 1px solid #aaa;
border-radius: 0.2em;
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
-o-border-radius: 0.2em; -ms-border-radius: 0.2em;
-moz-box-shadow: 0.1em 0.2em 0.2em #ddd;
-webkit-box-shadow: 0.1em 0.2em 0.2em #ddd;
2015-09-30 22:29:52 +10:00
box-shadow: 0.1em 0.2em 0.2em #ddd;
background-color: #f9f9f9;
2015-09-27 23:45:05 +10:00
background-image: -moz-linear-gradient(top, #eee, #f9f9f9, #eee);
background-image: -o-linear-gradient(top, #eee, #f9f9f9, #eee);
background-image: -webkit-linear-gradient(top, #eee, #f9f9f9, #eee);
background-image: linear-gradient(to bottom, #eee, #f9f9f9, #eee);
padding: 0.1em 0.3em;
font-family: sans-serif;
font-size: 0.8em;
2015-09-27 23:45:05 +10:00
}
2015-09-28 23:35:02 +10:00
@font-face {
font-family: cp437;
src: url("cp437.ttf");
}
2015-09-27 23:45:05 +10:00
.guilabel {
/* In-game text CSS from the DF wiki; applies to :guilabel:`` directives.
* Use this for any text from an in-game announcement or menu.
*/
2015-09-28 23:35:02 +10:00
color: #CBC7C0;
2015-12-11 16:12:20 +11:00
font-family: cp437, 'fixedsys', monospace;
2015-09-27 23:45:05 +10:00
background: #000000;
2015-09-28 23:35:02 +10:00
font-size: 0.95em;
padding: 0.05em 0.4em;
2015-09-27 23:45:05 +10:00
}