-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
111 lines (88 loc) · 1.35 KB
/
style.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
/* todo - use include */
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:200,400');
body {
font-family: 'Source Code Pro', monospace;
font-weight: 200;
font-size: 120%;
}
.⭐️ {
font-weight: 400;
text-transform: uppercase;
border-bottom: 1px solid #0097FF;
padding-left: 1em
}
.⭐️ > span {
display: block;
}
.⭐️ > span > span {
font-weight: 200
}
.📅 {
font-weight: 200;
font-size: .8em;
}
.📅 > span {
display: block;
}
body {
display: grid;
grid-template-columns: auto 2fr;
grid-gap: 2vmax;
max-width: 50em;
margin: auto;
}
.🔝 {
text-align: right;
grid-column: 1;
grid-row: 1;
transform: rotate(-1deg);
}
main {
grid-column: 2;
grid-row: 2;
padding-right: 1em;
transform: rotate(.5deg);
}
@media (max-width: 700px) {
body {
display: block;
}
.🔝 {
width: 60vw;
margin: auto;
}
main {
margin: 4em 6vw;
padding: 0;
}
}
hr {
border: none;
border-bottom: 1px solid #0097FF;
width: 50%;
margin: 3em 5vh;
}
.👏:before {
content: '→ '
}
.🤷♀️ {
font-size: 0.75em;
opacity: 0.4;
background: rgba(255,0,150, 0.2)
}
a {
color: #f08;
text-decoration: none
}
a:hover{
text-decoration: underline;
}
.🔗s {
padding: 0;
list-style: none;
}
footer {
font-size: 0.8em;
margin-top: 8em;
text-align: right;
}