-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (142 loc) · 3.09 KB
/
index.html
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
* {
margin: 0; /* сбрасываем внешние отступы */
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif; /* устанавливаем тип шрифта */
}
.clear {
clear: both; /* сброс обтекания */
}
main {
background-image: url(img/background.png); /* ставим фоновое изображение */
background-size: cover; /* растягиваем фон по размерам блока */
background-repeat: no-repeat; /* запрещаем картинке повторяться */
background-position: center; /* выравниваем ее по центру каждой оси */
min-height: 100vh; /* минимальная высота блока = высоте устройства */
padding-top: 40px;
}
.container {
max-width: 1100px; /* максимально возможная ширина блока 1100 пикселей */
margin: 0 auto; /* размещаем блок по центру экрана */
}
.left-block {
width: 630px; /* задаем ширину блока */
float: left; /* задаем поток обтекания слева */
}
.right-block {
width: 280px; /* задаем ширину блока */
float: right; /* задаем поток обтекания справа */
}
/* new */
.container:after {
content: '';
display: block;
clear: both;
}
.logo {
margin-bottom: 80px;
}
.left-block-content {
padding-left: 80px;
}
.top-img img {
vertical-align: middle;
margin-bottom: 12px;
}
.raiting-holder {
width: 170px;
margin-top: 20px;
margin-bottom: 30px;
}
.raiting-holder:after {
content: '';
display: block;
clear: both;
}
.btn {
background: linear-gradient(90deg,#0D0F42 -2.98%,rgba(9, 14, 113, 0.73) 50%);
border-radius: 6px;
display: block;
width: 40px;
height: 40px;
float: left;
margin-top: 4px;
}
.btn img {
margin: auto;
display: block;
width: 24px;
height: 100%
}
.raiting-block {
float: right;
color: #FFFFFF;
}
.raiting-block__text {
display: block;
}
.raiting-value img, span {
vertical-align: middle;
}
.raiting-value img {
transition: 0.4s;
filter: grayscale(100%);
}
.raiting-value img:hover {
filter: grayscale(0%);
cursor: pointer;
}
.left-text {
font-style: normal;
font-weight: 400;
font-size: 21px;
line-height: 1.4;
color: #FFFFFF;
}
/* right-block */
.block-title {
color: #ffffff;
text-align: center;
font-size: 32px;
}
.row:after {
content: '';
display: block;
clear: both;
}
.img-holder {
position: relative;
margin-top: 16px;
}
.img-holder:after {
content: '';
display: block;
clear: both;
}
.fl {float: left;}
.fr {float: right;}
.play-btn {
position: absolute;
top: 50%;
left: 0;
transform: translate(-50%, -50%);
margin: 0;
width: 40px;
transition: 0.2s;
}
.play-btn:hover {
width: 60px;
cursor: pointer;
}
.avatar-logo {
position: absolute;
top: 20px;
right: 40px;
}
.bot-shadow {
position: absolute;
width: 100%;
height: 130px;
bottom: 0;
background: linear-gradient(180deg, rgba(11, 16, 26, 0) 38.02%, #0B101A 89.58%);
border-radius: 15px;
}