-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
226 lines (199 loc) · 5.54 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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden; /* Отключаем прокрутку */
}
/* Экран загрузки */
#loadingScreen {
background: linear-gradient(to right, rgb(2, 3, 59), rgb(0, 2, 127) 50%, rgb(2, 3, 59));
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
#logoText {
display: flex;
color: white;
font-size: 100px;
font-family: 'ProximaNova-Black';
font-weight: 100;
margin-top: -100px;
text-align: center;
}
img#logoim {
margin-top: -110px;
max-width: 100%;
height: auto;
}
img#hand {
margin-top: -30px;
margin-right: 10px;
}
/* Анимация загрузки */
.loader {
margin-top: 35px;
border: 12px solid #ffffff;
border-right: 12px solid #030733;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Основной контент */
#mainContent {
background-color: rgb(20, 20, 20);
height: 100%;
width: 100%;
overflow-y: auto;
scroll-behavior: smooth;
}
/* Навигационное меню */
.topnav {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgb(30, 30, 30);
padding: 10px 0;
display: none; /* Меню скрыто по умолчанию */
}
.menu {
display: flex;
align-items: left;
}
.menu a {
color: #f2f2f2;
text-decoration: none;
text-align: center;
padding: 20px 30px;
font-size: 25px;
font-weight: bold;
font-family: 'Arial';
border-radius: 30px;
border: 5px solid rgb(40, 40, 40);
box-shadow: 5px 5px 5px rgb(15, 15, 15);
margin: 20px 20px;
}
.icons {
display: flex;
align-items: center;
}
.icons img {
height: 55px;
width: auto;
margin-left: 20px;
margin-right: 20px;
}
img#Qlogo {
height: 70px;
width: auto;
padding-right: 10px;
}
#QlogoText {
color: #f2f2f2;
text-align: center;
padding: 20px 30px;
font-size: 25px;
font-weight: bold;
font-family: 'Arial';
border-radius: 30px;
border: 5px solid rgb(40, 40, 40);
margin: 10px 10px;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
box-shadow: 5px 5px 5px rgb(15, 15, 15);
}
/* Контейнер с основным контентом */
#container {
display: flex;
justify-content: center;
align-items: center;
padding: 50px 20px;
background-color: rgb(20, 20, 20); /* Фон */
height: 100vh; /* Высота 100% экрана */
}
#textContainer {
align-items: flex-start;
}
img#MeIm {
height: auto;
width: 100%;
max-width: 700px; /* Ограничение максимальной ширины */
margin-right: 60px;
border-radius: 40px; /* Радиус границ */
border: 10px solid rgb(40, 40, 40); /* Рамка */
box-shadow: 10px 10px 5px rgb(10, 10, 10); /* Тень */
}
#AboutMe {
color: white;
font-size: 85px;
font-family: 'ProximaNova-Black', sans-serif;
}
#HiText {
color: white;
font-size: 30px;
font-family: 'Arial', sans-serif;
font-weight: bold;
text-align: left; /* Выравнивание текста по левому краю */
max-width: 600px; /* Ограничение максимальной ширины текста */
line-height: 1.6;
}
#textContainer.AboutMe {
align-items: flex-start;;
}
/* Обертка для картинки и текста */
#imageTextWrapper {
display: flex;
justify-content: space-evenly; /* Равномерное распределение пространства */
align-items: flex-start;
background-color: #1a1a1a; /* Цвет фона обертки */
padding: 50px; /* Увеличение внутреннего отступа */
border-radius: 30px; /* Увеличение радиуса углов */
box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5); /* Тень */
max-width: 1400px; /* Увеличение максимальной ширины блока */
flex-wrap: wrap; /* Позволяет тексту переноситься под изображение */
}
.wk_but {
position: absolute;
left: 45%;
cursor: pointer;
outline: none;
}
/* Содержимое основной страницы */
#content {
padding: 20px;
}
/* Применяем шрифт */
@font-face {
font-family: 'ProximaNova-Black';
src: local('ProximaNova-Black'), url('/fonts/ProximaNova-Black.ttf') format('truetype');
}
@media (max-width: 768px) {
#imageTextWrapper {
flex-direction: column;
text-align: center; /* Выравнивание текста по центру на маленьких экранах */
}
img#MeIm {
max-width: 80%; /* Уменьшаем ширину изображения на маленьких экранах */
}
#HiText {
font-size: 20px; /* Уменьшаем размер текста на маленьких экранах */
}
#AboutMe{
font-size: 30px;
}
}