-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
107 lines (88 loc) · 1.34 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
* {
box-sizing: border-box;
font-family: 'Rubik', sans-serif;
}
html {
height: 100vh;
}
body {
margin: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
position: relative;
}
.video {
min-height: 100%;
min-width: 100%;
filter: blur(1px) grayscale(80%);
position: absolute;
top: 50%;
bottom: 0;
left: 50%;
transform: translate(-50%, -50%);
}
main {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 25px;
}
.logo {
width: 700px;
}
.list {
display: flex;
}
.list .list__element {
display: flex;
align-items: center;
padding: 5px;
}
.list__element img {
max-width: 100%;
}
.list--details .list__element {
margin-right: 40px;
}
.list--details .list__element img {
height: 25px;
margin-right: 10px;
}
.list--social .list__element {
margin-right: 30px;
}
.list--social .list__element:hover {
background: gray;
}
.list--social .list__element img {
height: 40px;
}
footer {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
color: white;
}
footer a {
color: white;
padding: 10px;
text-decoration: none;
}
footer a:hover {
background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 576px){
main {
font-size: 18px;
}
.list--social {
margin-top: 40px
}
.logo {
width: 90vw;
}
}