This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbase.css
132 lines (113 loc) · 2.02 KB
/
base.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#preso {
box-shadow: none;
}
div.content {
margin-top: -32px !important;
}
body {
background: #222;
}
.slide {
background: #EBE3D1;
border: 1px solid #111;
box-shadow: 0 0 10px 3px rgba(0, 0, 0, .5) inset;
text-shadow: 0 2px 2px rgba(0, 0, 0, .45);
}
.slide a {
color: #0a5034;
text-decoration: none;
text-shadow: 0 1px 1px rgba(0, 40, 0, .85);
}
.slide h1 {
font-size: 3em;
color: #fff;
background: #340505 url(top.png) repeat-x;
padding: 0.25em 10px 0.25em 0;
text-align: right;
text-shadow: 0 3px 3px rgba(0, 0, 0, .85);
border-bottom: 3px solid #003b29;
box-shadow: 0 2px 2px rgba(0, 0, 0, .15);
font-weight: bold;
}
.slide h2 {
font-weight: bold;
}
.slide .subsection h1 {
text-align: center;
}
.smbullets > ul > li,
.bullets > ul > li {
text-align: left;
}
pre code {
display: block;
box-shadow: 0 0 10px rgba(0, 0, 0, .5) inset;
padding: 6px 12px;
}
code {
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
padding: 3px 6px;
background: #eee;
font-style: normal;
font-size: 90%;
}
code code {
border-width: 0;
background: transparent;
box-shadow: none;
padding: 0;
}
.small_images
{
padding: 2em;
}
.small_images img
{
width: 320px;
display: inline;
}
.letter_box
{
display: inline-block;
width: 50px;
text-align: center;
border: 2px solid black;
}
#bottom #notes
{
font-size: 0.9em;
font-weight: bold;
}
.error {
font-weight: bolder;
font-size: 5em;
color: #ff0000;
transform: rotate(-30deg);
-ms-transform: rotate(-30deg); /* IE 9 */
-webkit-transform: rotate(-30deg); /* Safari and Chrome */
animation: error 10s;
-webkit-animation: error 10s; /* Safari and Chrome */
}
@keyframes error
{
from {color: #000;}
to {color: #ff0000;}
}
@-webkit-keyframes error /* Safari and Chrome */
{
from {
color: #000;
text-shadow: 10px 10px 10px rgba(0, 0, 0, .85);
}
to {color: #ff0000;}
}
table {
border: 2px solid black;
margin-left: auto;
margin-right: auto;
}
table td {
padding: 5px 15px;
}