-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
115 lines (102 loc) · 2.05 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
@import url("../public/font/latin.css");
* {
box-sizing: border-box;
}
:root {
--color: #02092c;
}
body {
margin: 0;
background: transparent;
}
.esog-wrapper {
background: #02092c;
font-family: 'Plus Jakarta Sans';
font-weight: 700;
width: 1200px;
height: 630px;
border-radius: 20px;
/* border-bottom: solid 60px #0c195c; */
overflow: hidden;
position: relative;
}
.esog-wrapper::before {
content: '';
position: absolute;
box-sizing: content-box;
width: 0px;
height: 0px;
top: 0px;
left: 700px;
border-left: solid 40px #e9eaef;
border-bottom: solid 310px #e9eaef;
border-top: solid 310px transparent;
border-right: solid 40px transparent;
z-index: 2;
}
.esog-wrapper::after {
content: '';
position: absolute;
box-sizing: content-box;
width: 0px;
height: 0px;
top: 0px;
left: 0px;
border-left: solid 80px var(--color);
border-bottom: solid 80px transparent;
border-top: solid 80px var(--color);
border-right: solid 80px transparent;
z-index: 2;
}
.esog-background {
position: absolute;
height: 570px;
width: 500px;
top: 0px;
left: 700px;
z-index: 1;
}
.esog-character-image {
position: absolute;
width: 1200px;
height: auto;
top: -200px;
left: 350px;
z-index: 3;
}
.esog-content {
background: #e9eaef;
color: #0c195c;
position: absolute;
height: 570px;
width: 700px;
top: 0px;
z-index: 2;
padding: 90px 50px;
display: flex;
flex-direction: column;
justify-content: center;
}
.esog-character__name {
font-size: 120px;
line-height: 1;
word-spacing: 100vw;
}
.esog-footer {
background: #0c195c;
position: absolute;
height: 60px;
width: 100%;
top: 570px;
left: 0px;
z-index: 5;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
color: white;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 0.1em;
padding: 15px 25px;
}