-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (63 loc) · 962 Bytes
/
style.css
File metadata and controls
63 lines (63 loc) · 962 Bytes
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
* {
box-sizing: border-box;
font-family: 'Calibri', sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: #222;
color: #eee;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 30px;
}
a {
color: #fabe70;
text-decoration: none;
}
a:hover {
opacity: 0.8;
}
h1, h2 {
color: #fabe70;
}
h1, h2 {
text-transform: uppercase;
margin-bottom: 15px;
}
.links {
margin-bottom: 15px;
}
div.code {
background-color: #333;
padding: 25px 10px;
margin-bottom: 20px;
position: relative;
width: 100%;
white-space: normal;
word-wrap: break-word;
}
div.code::after {
content: 'HTML';
position: absolute;
bottom: 2px;
right: 5px;
}
.links a {
display: block;
padding: 10px;
text-decoration: none;
color: #52a8f8;
/* border: 1px dotted #eee; */
}
.bottom .text a {
display: inline-block;
margin-bottom: 15px;
border-bottom: 1px solid #fabe70;
}
.social i {
font-size: 18px;
margin-right: 10px;
}