-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathabout.css
More file actions
86 lines (70 loc) · 1.21 KB
/
about.css
File metadata and controls
86 lines (70 loc) · 1.21 KB
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
.info-panel {
background-color: #1e1e1e;
border-radius: 25px;
padding: 1% 3.5% 8%;
text-align: center;
}
.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12% 4%;
text-align: left;
}
.content-grid > div > h2 {
position: relative;
z-index: 1;
}
.content-title {
font-size: 30px;
padding: 1.75%;
}
.highlight {
position: relative;
}
.highlight:before {
content: "";
position: absolute;
width: calc(100% + 4px);
height: 20%;
left: -2px;
bottom: 0;
z-index: -1;
transform: rotate(-2deg);
opacity: 0.8;
}
.highlight.pink::before {
background-color: green;
}
.highlight.red::before {
background-color: red;
}
.highlight.yellow::before {
background-color: yellow;
}
.highlight.orange::before {
background-color: whitesmoke;
}
.join-button-div {
display: flex;
justify-content: center;
margin: 45px 0 0;
}
.join-button {
display: block;
border: 1px solid white;
border-radius: 1.5rem;
font-size: 1.5rem;
font-weight: bold;
background-color: #2b2a2a;
color: #dbd5d5;
padding: 16px 32px;
cursor: pointer;
}
.join-button:hover {
background-color: #525151;
color: #fff;
}
.join-button:active {
background-color: #000000;
color: white;
}