-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (68 loc) · 1.14 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
body {
background-color: #171d23;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
.container {
background-color: #f9e492;
width: 400px;
height: 300px;
position: relative;
}
.body {
margin: 0;
top: 0;
left: 0;
right: 0;
bottom: 0;
position: absolute;
}
.container * {
background: #f9e492;
padding: var(--p, 0);
margin: var(--m, 0);
border-radius: var(--r, 0 0 10px 10px);
position: absolute;
}
.container b,
.container i,
.container u {
background: #191919;
--p: 20px 50px;
--m: 138px 150px;
}
.container i i {
--p: 25px 25px;
--m: 15px -25px;
}
.container b,
.container u {
border: 5px solid #f9e492;
}
.container b,
.container u {
--p: 22.5px 10px;
--m: -115px -50px;
--r: 15px;
}
.container b b {
--m: -27.5px 35px;
}
.container b b b {
--p: 27.5px 10px;
--m: -37.5px -40px;
}
.container b b b b {
--p: 17.5px 10px;
--m: -12.5px 35px;
}
.container u {
--p: 32.5px 10px;
--m: -11px -88px;
transform: rotate(60deg);
}