-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.css
146 lines (122 loc) · 2.28 KB
/
main.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", Arial, sans-serif;
line-height: 1.6;
color: #F0F0F0;
background: linear-gradient(248.44deg, rgba(9, 37, 55, 0) 59.87%, #092437 94.15%), linear-gradient(295.98deg, rgba(8, 60, 67, 0) 57.84%, #083D43 93.73%), #091117;
min-height: 100vh;
width: 100%;
}
.container {
max-width: 1200px;
width: 100%;
margin: 0 auto;
}
.page-header {
color: #fff;
margin: 0;
padding: 30px;
}
main {
height: 90vh;
}
.content {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.title h1 {
margin: 0 auto;
max-width: 600px;
font-weight: 300;
font-size: 74px;
line-height: 79px;
letter-spacing: -0.03em;
padding-right: 60px;
}
.title h1 strong {
font-weight: 500;
}
.details ul {
display: inline-flex;
flex-direction: column;
}
.details li {
display: inline-flex;
flex-direction: row;
align-items: center;
padding: 2px 8px;
gap: 10px;
margin-bottom: 8px;
background: #48008C;
color: #FBFAFF;
font-family: monospace;
width: fit-content;
}
.details li span {
height: 16px;
}
.details li a {
text-decoration: none;
color: #FBFAFF;
}
.details pre {
box-sizing: border-box;
display: inline-flex;
flex-direction: row;
align-items: center;
padding: 10px 12px;
gap: 16px;
isolation: isolate;
margin-top: 20px;
height: 40px;
background: #272727;
border: 1px solid #4D4D4D;
}
.details pre button {
display: inline-flex;
background: none;
border: 0;
width: auto;
opacity: .5;
cursor: pointer;
}
.details pre button:hover {
opacity: 1;
}
#copy-message {
position: absolute;
font-size: 12px;
margin: 5px;
color: #E0E0E0;
}
@media (max-width: 1000px) {
.content {
flex-direction: column;
gap: 20px;
padding: 30px;
text-align: center;
}
.title h1 {
max-width: none;
padding: 0;
}
.details ul {
align-items: center;
}
.details li {
width: 100%;
justify-content: center;
}
}
@media (max-width: 600px) {
.title h1 {
font-size: 60px;
line-height: 60px;
}
}