-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
122 lines (101 loc) · 1.72 KB
/
index.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
main {
display: flex;
justify-content: space-around;
}
.user {
display: flex;
flex-direction: column;
}
.user-image {
display: flex;
flex-direction: column;
align-self: center;
}
.user-head-top-v {
width: 302px;
height: 321px;
background-image: url(./images/vlad-t.jpg);
z-index: 100;
}
.user-head-bottom-left-v {
width: 62px;
height: 130px;
background-image: url(./images/vlad-b-l.jpg);
position: relative;
top: -2px;
}
.user-head-bottom-middle-v {
width: 144px;
height: 130px;
background-image: url(./images/vlad-b-m.jpg);
position: relative;
top: -2px;
z-index: 50;
}
.user-head-bottom-right-v {
width: 82px;
height: 132px;
background-image: url(./images/vlad-b-r.jpg);
position: relative;
top: -2px;
right: 1px;
}
.user-head-top-l {
width: 460px;
height: 387px;
background-image: url(./images/leha-t.jpg);
}
.user-head-bottom-left-l {
width: 74px;
height: 148px;
background-image: url(./images/leha-b-l.jpg);
}
.user-head-bottom-middle-l {
width: 187px;
height: 155px;
background-image: url(./images/leha-b-m.jpg);
}
.user-head-bottom-right-l {
width: 64px;
height: 149px;
background-image: url(./images/leha-b-r.jpg);
}
.user-head-bottom-wrapper {
display: flex;
align-self: center;
}
.on-speak {
animation-name: speak;
animation-duration: 3s;
}
@keyframes speak {
0% {
transform: translateY(30px);
}
20% {
transform: translateY(0px);
}
40% {
transform: translateY(30px);
}
60% {
transform: translateY(0px);
}
80% {
transform: translateY(30px);
}
100% {
transform: translateY(0px);
}
}
.user-controll-panel-wrapper {
margin-top: 40px;
}
.user-form {
display: flex;
flex-direction: column;
}
.user-form-input-wrapper {
display: flex;
justify-content: center;
}