-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (41 loc) · 717 Bytes
/
styles.css
File metadata and controls
52 lines (41 loc) · 717 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
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
padding: 20px;
}
h1 {
font-size: 2em;
margin-bottom: 20px;
}
.social-icons {
display: flex;
justify-content: center;
gap: 20px;
}
.social-icons a {
text-decoration: none;
font-size: 2em;
transition: color 0.3s ease;
}
.social-icons a .fa-steam {
color: #000000;
}
.social-icons a .fa-twitter {
color: #1DA1F2;
}
.social-icons a .fa-youtube {
color: #FF0000;
}
.social-icons a .fa-twitch {
color: #9146FF;
}
.social-icons a .fa-envelope {
color: #D44638;
}
.social-icons a .fa-discord {
color: #7289DA;
}
.social-icons a:hover {
opacity: 0.7;
}