-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (105 loc) · 2.24 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (105 loc) · 2.24 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
:root {
--bg: #010816;
--panel: rgba(5, 20, 42, 0.88);
--stroke: rgba(48, 123, 210, 0.28);
--primary: #43a8ff;
--text: #edf6ff;
--muted: #8fb3d9;
--shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
font-family: Arial, Helvetica, sans-serif;
color: var(--text);
background:
radial-gradient(circle at center, rgba(40, 129, 218, 0.16), transparent 26%),
linear-gradient(180deg, #01050d 0%, #021124 100%);
}
.page {
width: 100%;
display: flex;
justify-content: center;
}
.card {
width: min(760px, 100%);
padding: 42px 36px 34px;
text-align: center;
}
h1 {
font-size: clamp(10px, 5vw, 40px);
line-height: 0.98;
letter-spacing: -0.05em;
margin-bottom: 16px;
}
h1 span {
color: var(--primary);
}
.text {
font-size: 18px;
line-height: 1.6;
color: var(--muted);
max-width: 520px;
margin: 0 auto 26px;
}
.socials {
display: flex;
justify-content: center;
gap: 14px;
margin-bottom: 28px;
flex-wrap: wrap;
}
.socials a {
width: 56px;
height: 56px;
border-radius: 16px;
display: grid;
place-items: center;
color: var(--text);
background: rgba(3, 14, 29, 0.82);
border: 1px solid rgba(67, 168, 255, 0.18);
text-decoration: none;
transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.socials a:hover {
transform: translateY(-2px);
border-color: rgba(67, 168, 255, 0.4);
box-shadow: 0 10px 24px rgba(27, 111, 188, 0.24);
}
.socials svg {
width: 24px;
height: 24px;
}
.robot {
width: min(320px, 100%);
margin: 0 auto;
padding: 10px;
border-radius: 24px;
background: radial-gradient(circle at center, rgba(67, 168, 255, 0.12), transparent 70%);
}
.robot img {
width: 100%;
display: block;
object-fit: contain;
filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.36));
}
@media (max-width: 640px) {
body {
padding: 16px;
}
.card {
padding: 28px 20px 24px;
border-radius: 24px;
}
.socials a {
width: 52px;
height: 52px;
}
}