-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
252 lines (220 loc) · 5.4 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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
:root {
--text-color: #FFF;
--background-color: #343434;
}
*{
/* border & padding входят в расчёт размера */
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
color: var(--text-color);
margin: 0px;
padding: 0px;
background-color: var(--background-color);
font-family: sans-serif;
background-size: cover;
background-repeat: no-repeat;
background-position: 0px 0px;
background-attachment: fixed;
}
a {
color: red;
text-decoration: none;
}
/* scroll bar */
::-webkit-scrollbar {width: 8px}
::-webkit-scrollbar-track {background: #18191d}
::-webkit-scrollbar-thumb {background: #3b4146}
::-webkit-scrollbar-thumb:hover {background: #474e54}
/* HEADER */
#header {
width: 100%;
height: 120px;
box-shadow: 0px 5px 25px 0px black;
background: rgba(21, 21, 21, 0.2);
align-items: center;
border-bottom: 1px solid #343434;
margin-bottom: 150px;
}
#headerIMG {
height: 100%;
}
#search {
float: right;
border: 3px solid #7e7d7d;
margin: 5px;
padding: 10px;
display: flex;
border-radius: 10px;
}
#search img{
height: 80px;
}
/* ОСНОВНАЯ КОНТЕНТ-ЛЕНТА */
.content {
border-bottom: 0px;
border-right: 2px solid #7e7d7d;
border-left: 2px solid #7e7d7d;
border-top: 0px;
text-align: center;
position: relative;
display: block;
background-color: rgba(32, 32, 32, 0);
height: auto;
width: 718;
border-radius: 0px 0px 25px 25px;
/* скругление углов [Элипс - 10px/20px; ] */
}
.blockh {
background-color: rgba(32, 32, 32, 0.8);
border-bottom: 2px solid #7e7d7d;
padding-top: 30px;
}
.blockh:last-child {
background-color: rgba(32, 32, 32, 0.8);
border-bottom: 0px solid #7e7d7d;
padding-top: 30px;
}
.hovergallery {
color: red;
}
.hovergallery img {
position: relative;
width: 600px;
-webkit-transform: scale(0.9);
/*Webkit: уменьшаем размер до 0.8*/
-moz-transform: scale(0.9);
/*Mozilla: масштабирование*/
-o-transform: scale(0.9);
/*Opera: масштабирование*/
-webkit-transition-duration: 0.5s;
/*Webkit: длительность анимации*/
-moz-transition-duration: 0.5s;
/*Mozilla: длительность анимации*/
-o-transition-duration: 0.5s;
/*Opera: длительность анимации*/
opacity: 0.8;
/*Начальная прозрачность изображений*/
}
.hovergallery img:hover {
-webkit-transform: scale(1.0);
/*Webkit: увеличиваем размер до 1.2x*/
-moz-transform: scale(1.0);
/*Mozilla: масштабирование*/
-o-transform: scale(1.0);
/*Opera: масштабирование*/
box-shadow: 0px 0px 30px gray;
/*CSS3 тени: 30px размытая тень вокруг всего изображения*/
-webkit-box-shadow: 0px 0px 30px gray;
/*Webkit: тени*/
-moz-box-shadow: 0px 0px 30px gray;
/*Mozilla: тени*/
opacity: 1;
}
/* МОДИФИЦИРОВАНИЕ 07.03.21 */
/* КОМПАС */
.y {
/* ЗАПРЕТ НА ВЫДЕЛЕНИЕ ТЕКСТА */
user-select: none;
border: 2px solid #7e7d7d;
border-radius: 25px 0 0 0;
width: 100%;
background-color: rgba(32, 32, 32, 0.8);
/* border & padding входят в расчёт размера */
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.yy {
margin: 50px 0;
display: flex;
/* item по центру */
justify-content: center;
}
.yyy {
background-color: rgba(32, 32, 32, 1);
padding: 6px 15px;
margin: 3px;
/* НАСТРОКА ГРАНИЦ */
border-radius: 5px;
border: 1px solid grey;
/* СТИЛИЗАЦИЯ ШРИФТА */
color: #7e7d7d;
font-size: 1.88em;
/* 30px */
}
.xxx {
background-color: rgba(40, 40, 40, 1);
border: 1px solid #343434;
color: grey;
}
.yyy:hover {
background-color: rgba(40, 40, 40, 1);
border: 1px solid #343434;
color: red;
}
/* BOTTOM */
.bottom {
background-color: rgba(34, 34, 34, 0.8);
border-radius: 25px 25px 0 0;
border: 2px solid #7E7D7D;
}
/* bottomText */
.bottomText {
font-size: 40px;
padding: 40px 0 40px 20px;
color: gray;
}
/* Строка данных аккаунта */
.bottomAk {
display: flex;
flex-direction: row;
flex-wrap: no-wrap;
padding: 20px 0 20px 20px;
border-top: 1px solid grey;
}
/* div Иконок аккаунтов */
.AkIco {
flex-basis: 15%;
}
/* Иконки аккаунтов */
.AkIco1 {
width: 100%;
border-radius: 50%;
}
/* Имя аккаунта */
.AkName {
flex-basis: 66%;
font-size: 60px;
margin: auto 0 auto 20px;
height: 60px;
color: #FFA000;
}
/* ICO соцсети */
.PlAk {
flex-basis: 15%;
}
.PlAk1 {
width: 100%;
}
@media (orientation: landscape){
/* scroll bar */
::-webkit-scrollbar {width: 16px}
::-webkit-scrollbar-track {background: #18191d}
::-webkit-scrollbar-thumb {background: #3b4146}
::-webkit-scrollbar-thumb:hover {background: #474e54}
#header{
height: 70px;
}
#search{
width: 60px;
height: 60px;
padding: 2px;
}
#search img {
width: 50px;
height: 50px;
}
}