-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
109 lines (85 loc) · 1.81 KB
/
main.css
File metadata and controls
109 lines (85 loc) · 1.81 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 14px;
line-height: 1.625;
background:
radial-gradient(#aaa 2px, transparent 3px),
radial-gradient(#aaa 2px, transparent 3px),
linear-gradient(#1a1a1a 4px, transparent 0),
linear-gradient(45deg, transparent 74px, transparent 75px, #a6a6a6 75px, #a6a6a6 76px, transparent 77px, transparent 109px),
linear-gradient(-45deg, transparent 75px, transparent 76px, #a4a4a4 76px, #a4a4a4 77px, transparent 78px, transparent 109px),
#1a1a1a;
background-size: 109px 109px, 109px 109px,100% 6px, 109px 109px, 109px 109px;
background-position: 54px 55px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
color: #fff;
}
section {
margin-bottom: 25px;
background: #1a1a1a;
padding: 35px 55px;
box-sizing: border-box;
}
footer {
margin-top: 25px;
margin-bottom: 50px;
background: #1a1a1a;
padding: 35px 55px;
box-sizing: border-box;
}
.container {
width: 750px;
margin-left: auto;
margin-right: auto;
}
a {
color: #1d80ac;
text-decoration: none;
border-bottom: 1px dotted #1d80ac;
}
a:hover {
border-bottom-style: solid;
}
p {
margin-bottom: 12px;
}
.text-meta {
font-size: 12px;
color: #aaa;
}
.meta-name {
color: #848484;
margin-left: 5px;
font-size: 12px;
}
/* Headings
------------------------------------------------------------------------------*/
h1 {
font-size: 32px;
}
h2 {
font-size: 26px;
}
strong {
font-weight: bold;
}
ol {
list-style: circle;
padding-left: 20px;
}
li {
margin-bottom: 8px;
}
.main-header {
text-align: center;
padding-top: 50px;
padding-bottom: 80px;
}
.logo {
width: 140px;
}
@media (max-width: 750px) {
.container {
width: 100%;
max-width: 100%;
}
}