-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.css
100 lines (86 loc) · 1.47 KB
/
css.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
.main {
width: 2560px;
height: 1440px;
background: #fff;
margin: 20px auto;
position: relative;
}
.speaker {
position: absolute;
left: 0;
right: 0;
top: 50%;
font-family: 'Roboto', sans-serif;
transform: translate(0, -50%);
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.speaker .photo {
margin-right: 80px;
position: relative;
}
.speaker .photo img {
width: 534px;
height: 534px;
margin: 40px;
}
.speaker .photo .photo_right {
position: absolute;
top: 0;
right: 0;
}
.speaker .photo .photo_left {
position: absolute;
bottom: 0;
left: 0;
}
.speaker .info {
max-width: 1300px;
}
.speaker .info .info_subject {
font-size: 90px;
font-weight: bold;
margin-bottom: 40px;
}
.speaker .info .info_name {
font-size: 80px;
color: #636363;
}
.footer {
position: absolute;
left: 50%;
bottom: 40px;
transform: translate(-50%, 0);
display: flex;
flex-direction: row;
justify-content: center;
font-size: 64px;
font-family: 'Roboto', sans-serif;
}
.footer div {
display: flex;
justify-content: center;
align-items: center;
margin: 0 40px;
}
.footer div svg {
margin-right: 20px;
}
.logo {
position: absolute;
top: 30px;
right: 30px;
width: 200px;
}
.left {
position: absolute;
top: 0;
left: 0;
}
.right {
position: absolute;
bottom: 0;
right: 0;
}