-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
131 lines (115 loc) · 2.17 KB
/
index.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
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
128
129
130
131
* {
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: #333333;
font-weight: 400;
font-size: 20px;
line-height: 1.5;
padding: 0;
overflow-x: hidden;
-webkit-text-size-adjust: 100%;
}
/* This should be the "container" element */
body {
margin: 1.5% auto 0;
width: 100%;
max-width: 1642px;
}
p, li {
font-size: 20px;
color: #333333;
line-height: 1.5;
}
p {
margin: 0;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
margin-top: 0px;
line-height: normal;
font-family: 'Poppins', sans-serif;
line-height: 1.1;
font-weight: 700;
}
header h1 {
font-size: 1.2em;
text-transform: uppercase;
background-color: #ffffff;
border: #333333 solid 3px;
box-shadow: 2.5px 2.5px 0 #ffffff, 5px 5px 0 #333333, 7.5px 7.5px 0 #ffffff, 10px 10px 0 #333333;
display: block;
width: auto;
text-align: center;
padding: 10px 25px;
position: relative;
margin-bottom: 45px;
font-family: 'Inter', sans-serif;
}
header {
position: relative;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center
}
section {
position: relative;
text-align: center;
padding: 5px 0;
margin: 0 auto 27px;
width: 410px;
/* Tweak for overlapping lines */
background-color: #ffffff;
}
section .date::after {
content: ' - ';
}
header::before {
content: '';
position: absolute;
left: 0;
height: 100%;
width: 0px;
background-color: #aaa;
left: 50%;
top: 0;
transform: translate(-50%, 0%);
-webkit-transform: translate(-50%, 0%);
-moz-transform: translate(-50%, 0%);
border-left: 1px solid #aaa;
}
section::after {
content: '';
position: absolute;
z-index: -1;
left: 0;
height: 50%;
width: 0px;
background-color: #aaa;
left: 50%;
bottom: 0;
transform: translate(-50%, 85%);
-webkit-transform: translate(-50%, 85%);
-moz-transform: translate(-50%, 85%);
border-left: 1px solid #aaa;
}
section:last-child::after {
display: none;
}
.short-url { display: none; }
@media screen and (max-width: 1440px) {
body {
margin: 1rem 0;
padding: 0.5rem 2rem;
}
h2, h3 {
font-size: 1.5rem;
}
}
@media screen and (max-width: 520px) {
section {
width: auto;
}
}