-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (112 loc) · 2.23 KB
/
style.css
File metadata and controls
124 lines (112 loc) · 2.23 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&family=Fira+Mono&display=swap');
body {
min-height: 100vh;
margin: 0;
background: #f4f5ff;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #232946;
letter-spacing: 0.01em;
position: relative;
overflow: hidden;
}
.css-wave {
position: fixed;
top: 0;
bottom: 0;
width: 320px;
min-height: 100vh;
z-index: 0;
pointer-events: none;
overflow: visible;
background: none;
}
.css-wave-left {
left: 0;
}
.css-wave-right {
right: 0;
transform: scaleX(-1);
}
.css-wave svg {
display: block;
height: 180vh;
width: 320px;
position: absolute;
top: -20vh;
left: 0;
}
#content {
position: relative;
z-index: 1;
margin: 5vh auto 0 auto;
max-width: 700px;
width: 98vw;
padding: 0 2vw 2.2rem 2vw;
text-align: left;
background: none;
box-shadow: none;
border-radius: 0;
border-left: 6px solid #d946ef;
border-image: linear-gradient(180deg, #d946ef 0%, #a21caf 100%) 1;
}
h1 {
font-size: 2.6rem;
margin-bottom: 0.18rem;
line-height: 1.13;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 900;
letter-spacing: -2px;
color: #232946;
text-shadow: 2px 4px 16px #f5d0fe;
}
h3 {
margin-top: 1.5rem;
font-size: 1.13rem;
line-height: 1.22;
color: #d946ef;
letter-spacing: 0.5px;
font-weight: 700;
font-family: 'Montserrat', Arial, sans-serif;
}
ul {
list-style: square inside;
padding-left: 0;
margin: 0.9rem 0 0 0;
line-height: 1.38;
}
li {
margin: 0.45rem 0;
font-size: 1.01rem;
line-height: 1.38;
color: #232946;
font-family: 'Montserrat', Arial, sans-serif;
}
.username {
font-family: 'Fira Mono', 'Courier New', monospace;
background: #f5d0fe;
color: #a21caf;
border-radius: 0.4rem;
padding: 0.09rem 0.32rem;
font-size: 0.97em;
}
a, a:visited {
color: #d946ef;
text-decoration: underline dotted;
font-weight: 600;
transition: color 0.2s, text-decoration 0.2s;
}
a:hover {
color: #a21caf;
text-decoration: underline solid;
}
@media (max-width: 800px) {
#content {
margin-top: 1.5vh;
padding: 0 0.6rem 1.2rem 0.6rem;
max-width: 99vw;
border-left-width: 3px;
}
h1 {
font-size: 1.6rem;
}
}