-
Notifications
You must be signed in to change notification settings - Fork 0
/
darkmode.css
79 lines (69 loc) · 1.67 KB
/
darkmode.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
body {
/* font-family:"Petrona"; */
background-color:black;
line-height:1.6;
color:white;
/* font-size:14pt; */
font-family: "Azo Sans", sans-serif;
font-style: normal;
font-weight: 200;
}
.nav-link {
color: white;
}
.mainHeader {
width:100%;
text-align:center;
background-color: white;
color: black;
padding:20px;
}
.content {
margin-top:50px;
}
.definition {
/* background-color: rgb(247, 202, 144); */
/* color:black; */
/* border-radius:2px; */
/* border: 2px solid white; */
padding-left:15px;
padding-top:4px;
padding-right:15px;
padding-bottom:4px;
/* float:left; */
width:60%;
/* box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 12px 0 rgba(0, 0, 0, 0.19); */
margin-top:0px;
margin-bottom:40px;
/* font-family:"Petrona"; */
font-size:14pt;
text-align:center;
background:
linear-gradient(to right, white 1px, transparent 1px) 0 0,
linear-gradient(to right, white 1px, transparent 1px) 0 100%,
linear-gradient(to left, white 1px, transparent 1px) 100% 0,
linear-gradient(to left, white 1px, transparent 1px) 100% 100%,
linear-gradient(to bottom, white 1px, transparent 1px) 0 0,
linear-gradient(to bottom, white 1px, transparent 1px) 100% 0,
linear-gradient(to top, white 1px, transparent 1px) 0 100%,
linear-gradient(to top, white 1px, transparent 1px) 100% 100%;
background-repeat: no-repeat;
background-size: 30px 10px;
}
.definition p {
margin:0;
padding: 10px 5px 10px 5px;
}
h3 {
font-family:"Tangerine";
font-size:40pt;
}
h5 {
font-size:24pt;
}
.thumbnail {
background-color: white;
}
.thumbnail .caption {
color:black;
}