-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (48 loc) · 974 Bytes
/
styles.css
File metadata and controls
55 lines (48 loc) · 974 Bytes
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
/* Discord Section */
.discord {
background-color: #111;
color: #fff;
padding: 4rem 2rem;
text-align: center;
}
.discord h2 {
margin-bottom: 2rem;
}
.discord-servers {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}
.discord-widget {
background-color: #222;
padding: 1rem;
border: 1px solid #333;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
text-align: center;
max-width: 350px;
}
.discord-widget h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
color: #00bcd4;
}
.discord-widget p {
margin-bottom: 1rem;
font-size: 1rem;
}
.discord-widget .btn {
display: inline-block;
margin-top: 1rem;
padding: 0.5rem 1.5rem;
background-color: #00bcd4;
color: #fff;
text-decoration: none;
font-weight: 700;
border-radius: 5px;
transition: background-color 0.3s;
}
.discord-widget .btn:hover {
background-color: #008c9e;
}