-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (100 loc) · 2.09 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
112
113
114
115
116
117
118
119
120
121
122
123
124
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
height: 100svh;
width: 100svw;
background: rgb(0, 0, 0);
color:rgb(248 250 252);
font-family: 'Azeret Mono',monospace;
overflow: hidden;
text-align: center;
}
header{
height: 4svh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: clamp(12px,1.1svw,2rem);
font-style: italic;
background: rgb(255,255,255);
background: linear-gradient(45deg, rgba(20,153,84,0.6) 0%, rgba(228,49,43,0.6) 90%);
}
main{
width: 100%;
height: 86svh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
footer{
width: 100%;
height: 10svh;
display: flex;
flex-direction: column;
justify-content: center;
}
.heading{
width: 100%;
height: clamp(50px,30%,30%);
display: inline-flex;
justify-content: center;
align-items: safe end;
font-family: 'Azeret Mono',monospace;
font-size: clamp(16px,2svw,4rem);
font-weight: 400;
font-style: italic;
}
.text-area{
height: 100%;
width: 100%;
display: inline-flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.text{
border-radius: 2svw;
background: hsla(150, 50%, 10%,0.9);
color: hsl(157, 100%, 50%) ;
width: 80%;
height: clamp(50%,60%,80%);
display: inline-flex;
justify-content: center;
align-items: center;
font-family: "Space Mono", monospace;
font-size: clamp(1.2rem,6svw,8rem);
font-weight: 600;
}
.author{
height: 60%;
width: 100%;
display: inline-flex;
justify-content: center;
align-items: center;
font-size: 2.5svh;
font-family: "JetBrains Mono",monospace;
color: hsl(157, 100%, 30%);
}
.icons{
height: 40%;
width: 100%;
display: inline-flex;
justify-content: center;
align-items: center;
gap: 2svw;
}
.icons div{
aspect-ratio: 1;
height: 100%;
}
.icons div svg{
height: 80%;
width: 80%;
stroke: hsl(157, 100%, 20%);
stroke-width: 1.8;
}