-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathstyle.css
More file actions
169 lines (151 loc) · 2.85 KB
/
Copy pathstyle.css
File metadata and controls
169 lines (151 loc) · 2.85 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: #f4f9ff;
background:
radial-gradient(
circle at top left,
rgba(255, 255, 255, 0.16),
transparent 22%
),
radial-gradient(
circle at bottom right,
rgba(173, 216, 230, 0.22),
transparent 20%
),
linear-gradient(135deg, #0f3756, #185e82 35%, #59a6c8 100%);
}
body::before {
content: "";
position: fixed;
inset: 0;
background:
radial-gradient(
circle at 15% 15%,
rgba(255, 255, 255, 0.22),
transparent 18%
),
radial-gradient(
circle at 80% 20%,
rgba(209, 243, 255, 0.14),
transparent 18%
),
radial-gradient(
circle at 50% 95%,
rgba(255, 255, 255, 0.12),
transparent 22%
);
pointer-events: none;
opacity: 0.95;
}
h1 {
text-align: center;
font-size: clamp(2.4rem, 5vw, 4rem);
letter-spacing: 0.12em;
margin-bottom: 1.75rem;
text-shadow: 0 12px 40px rgba(0, 0, 0, 0.26);
line-height: 1.05;
}
.Student-container {
width: min(100%, 760px);
display: grid;
gap: 1.75rem;
place-items: center;
padding: 0 0.5rem;
}
.Student {
width: 100%;
padding: 2.2rem 2.2rem 2rem;
border-radius: 32px;
background: rgba(255, 255, 255, 0.14);
border: 1px solid rgba(255, 255, 255, 0.24);
box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
color: #eaf6ff;
overflow: hidden;
position: relative;
}
.Student::before,
.Student::after {
content: "";
position: absolute;
pointer-events: none;
border-radius: inherit;
}
.Student::before {
inset: 0;
background: linear-gradient(
145deg,
rgba(255, 255, 255, 0.22),
transparent 55%
);
mix-blend-mode: screen;
}
.Student::after {
width: 180px;
height: 180px;
top: -40px;
right: -40px;
background: radial-gradient(
circle at center,
rgba(255, 255, 255, 0.28),
transparent 55%
);
}
.Student h2 {
font-size: 2rem;
margin-bottom: 0.85rem;
letter-spacing: 0.03em;
text-transform: uppercase;
letter-spacing: 0.14em;
position: relative;
z-index: 1;
}
.Student p {
font-size: 1rem;
line-height: 1.9;
opacity: 0.92;
position: relative;
z-index: 1;
}
.Student p + p {
margin-top: 0.88rem;
}
.Student p::before {
content: "•";
color: rgba(255, 255, 255, 0.8);
margin-right: 0.75rem;
font-size: 1.2rem;
vertical-align: middle;
}
.Student p {
display: inline-flex;
align-items: baseline;
}
@media (max-width: 520px) {
body {
padding: 1rem;
}
h1 {
font-size: 2.6rem;
}
.Student {
padding: 1.8rem 1.8rem 1.5rem;
}
.Student h2 {
font-size: 1.8rem;
}
}