-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
129 lines (104 loc) · 2.32 KB
/
styles.css
File metadata and controls
129 lines (104 loc) · 2.32 KB
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
@import url(https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,100,100italic,300italic,300,400italic,500italic,700,700italic);
/*
colors:
#e4af79;
#df9c41;
#af7231;
#923621;
#2d2a28;
*/
body {
color: #923621;
margin: 1em;
background-color: #df9c41;
}
main {
background-color: #fff;
padding: 1em;
}
h1, h2, h3 {
color: #af7231;
}
article {
border: .25em dashed black;
background-color: #e4af79;
color: #2d2a28;
padding: 1em;
margin-bottom: 1em;
}
article img {
width: 20%;
}
article a:hover {
opacity: .5;
}
pre {
padding: 1em;
font-family: 'Roboto Mono', sans-serif;
font-weight: 400;
margin: 0;
margin-bottom: 1em;
width: 95%;
background-color: #923621;
color: #e4af79;
}
pre h1, pre h2, pre h3, pre h4, pre h5, pre h6 {
color: #2d2a28;
margin: 0;
padding: 0;
}
header h1 {
display: inline-block;
}
header nav, header nav ul {
display: inline-block;
}
header nav ul {
margin-left: 50%;
}
header nav ul li {
display: inline-block;
border: 1px solid black;
text-align: center;
padding: 10px;
}
div.example {
width: 80%;
margin-left: auto;
margin-right: auto;
background-color: #df9c41;
}
.css_color_text h1 {
color: blue;
}
.css_color_text .example p.center_text {
margin-left: auto;
margin-right: auto;
width: 80%;
margin-top: 2em;
padding: 1em;
}
.css_color_text .example h1 {
color: blue;
}
.css_color_text .example h2 {
text-align: center;
border: 1px dashed green;
background-color: orange;
font-family: Arial, sans-serif;
}
.css_color_text .example p span {
font-weight: bold;
font-style: italic;
}
.css_color_text .example p a {
text-decoration: line-through;
}
.css_color_text dl dt {
font-weight: bold;
margin-top: .25em;
}
.css_color_text dl span {
font-style: italic;
font-weight: normal;
}