-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
31 lines (27 loc) · 842 Bytes
/
style.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
body {
}
.slide {
background-image: linear-gradient(bottom, rgb(219,219,219) 21%, rgb(255,255,255) 85%);
background-image: -o-linear-gradient(bottom, rgb(219,219,219) 21%, rgb(255,255,255) 85%);
background-image: -moz-linear-gradient(bottom, rgb(219,219,219) 21%, rgb(255,255,255) 85%);
background-image: -webkit-linear-gradient(bottom, rgb(219,219,219) 21%, rgb(255,255,255) 85%);
background-image: -ms-linear-gradient(bottom, rgb(219,219,219) 21%, rgb(255,255,255) 85%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.21, rgb(219,219,219)),
color-stop(0.85, rgb(255,255,255))
);
}
.content {
font-family: "Ubuntu", Courier, monospace;
}
.subsection h1,
.subsection h2 {
font-weight: bold;
background-color: #750909;
}
h1, h2 {
/* color: rgb(79, 180, 226); */
}