-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (96 loc) · 1.73 KB
/
style.css
File metadata and controls
113 lines (96 loc) · 1.73 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
/* General Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Orbitron', sans-serif; /* Space-themed font */
background: black;
color: white;
overflow: hidden;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 1;
width: 90%;
}
.name {
font-size: 3.5rem;
animation: fadeIn 2s ease-in-out;
letter-spacing: 3px;
}
.nickname {
color: #00d9ff;
font-size: 1.8rem;
font-weight: 400;
}
.description {
font-size: 1.2rem;
margin-top: 10px;
animation: fadeIn 3s ease-in-out;
}
.buttons {
margin-top: 20px;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
animation: fadeIn 3s ease-in-out;
}
.button {
text-decoration: none;
color: white;
border: 2px solid white;
padding: 10px 20px;
margin: 5px;
border-radius: 5px;
transition: 0.3s;
display: inline-block;
}
.button.github {
background: linear-gradient(to right, #6e5494, #8c7bbc);
}
.button.telegram {
background: linear-gradient(to right, #0088cc, #00bfff);
}
.button.shorter {
background: linear-gradient(to right, #00f2b2, #00eef2);
}
.button:hover {
transform: scale(1.1);
box-shadow: 0px 0px 20px 5px white;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media (max-width: 768px) {
.name {
font-size: 2.5rem;
}
.nickname {
font-size: 1.5rem;
}
.description {
font-size: 1rem;
}
.button {
padding: 15px;
}
}