-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
120 lines (104 loc) · 2.12 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
html {
color: white;
height: 1080px;
text-align: center;
align-items: center;
}
body{
background: rgb(2,0,36);
transition: background 1s ease;
}
h1 {
text-shadow: 2px 2px black;
font-weight: bold;
font-size: 3rem;
}
button {
background-color: blueviolet;
border-color: white;
color: white;
width: 300px;
height: 80px;
border-radius: 10px;
font-size: 1rem;
font-weight: bold;
margin-top: 10px;
margin-bottom: 10px;
cursor: pointer;
}
#project {
background-color: blueviolet;
border-color: white;
color: white;
width: 400px;
height: 80px;
border-radius: 10px;
font-size: 1rem;
font-weight: bold;
margin-top: 10px;
margin-bottom: 10px;
cursor: pointer;
}
a {
color: white;
font-weight: bold;
text-decoration-color: rgb(255, 255, 255);
text-decoration-thickness: 2px;
}
.about {
background-color: blueviolet;
width: fit-content;
align-items: center;
margin: 0 auto;
border-style: solid;
border-width: 4px;
border-color: white;
}
#twitch:hover {
background-color: #6441a5; /* Twitch purple */
color: white;
}
#twitter1:hover, #twitter2:hover {
background-color: #1da1f2; /* Twitter blue */
color: white;
}
#youtube:hover {
background-color: #ff0000; /* YouTube red */
color: white;
}
#discord1:hover, #discord2:hover {
background-color: #7289da; /* Discord blue */
color: white;
}
#Github:hover {
background-color: #333; /* GitHub black */
color: white;
}
#project:hover {
background-color: #560071; /* GitHub black */
color: white;
}
#twitch {
background-color: #482e77; /* Twitch purple */
color: white;
}
#twitter1, #twitter2 {
background-color: #1884c7; /* Twitter blue */
color: white;
}
#youtube {
background-color: #ad0000; /* YouTube red */
color: white;
}
#discord1, #discord2{
background-color: #53639d; /* Discord blue */
color: white;
}
#Github {
background-color: #1b1b1b; /* GitHub black */
color: white;
}
#project {
background-color: #360146; /* GitHub black */
color: white;
}