-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (118 loc) · 2.26 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
* {
margin: 0;
padding: 0;
}
body {
background-color: black;
overflow: hidden;
}
.fraunces-text {
font-family: "Fraunces", serif;
font-optical-sizing: auto;
font-weight: 800;
font-style: italic;
font-variation-settings: "SOFT" 0, "WONK" 1;
color: white;
font-size: 5em;
}
.honk-text {
font-family: "Honk", system-ui;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings: "MORF" 15, "SHLN" 50;
font-size: 5em;
}
:root {
--color-TL: #f42d55;
--color-TCU: #fae1d7;
--color-TCU: #fae1d7;
--color-TR: #b9b4fe;
--color-BR: #fae1d7;
}
.main {
height: 100vh;
width: 100vw;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 1em;
}
.top {
/* align-items: center; */
justify-content: center;
height: 50vh;
width: 90vw;
display: flex;
gap: 1em;
}
.top .left {
align-items: center;
justify-content: center;
background-color: var(--color-TL);
width: 18vw;
display: flex;
border-radius: 10% 0 0 0;
}
.top .left img, .top .right img{
height: 10vh;
}
.top .right {
align-items: center;
justify-content: center;
width: 18vw;
background-color: var(--color-TR);
display: flex;
border-radius: 0 10% 0 0;
}
.top .centre {
display: flex;
flex-direction: column;
justify-content: center;
}
.top .centre-up {
display: flex;
justify-content: center;
align-items: center;
height: 25vh;
background-color: var(--color-TCU);
}
.top .centre-down {
display: flex;
justify-content: center;
align-items: center;
height: 25vh;
}
.top .centre img {
height: 25vh;
}
.flex{
display: flex;
}
.bottom{
gap: 1em;
height: 40vh;
width: 64.5vw;
justify-content: center;
}
.bottom-l{
display: flex;
justify-content: center;
align-items: center;
}
.bottom-l img{
border-radius: 0 0 0 10%;
height: 40vh;
}
.bottom-r{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--color-BR);
color: black;
border-radius: 0 0 10% 0;
}
.invert{
filter: invert();
}