-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (108 loc) · 2.48 KB
/
style.css
File metadata and controls
128 lines (108 loc) · 2.48 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
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
121
122
123
124
125
126
127
128
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;700&display=swap');
:root {
--background: #171717; /* Dark background color */
--lighter-background: rgba(40, 40, 40, 0.7); /* Slightly lighter background for the header and footer */
--accent-color: #ff5e5e; /* For links, etc */
--text-color: #e0e0e0; /* Light gray text color */
--main-heading-color: #ffcc00; /* For site title */
--heading-color: #e84a5f; /* For headings */
}
html {
font-family: 'Work Sans', sans-serif;
color: var(--text-color);
background-color: var(--background);
min-width: 320px;
}
header {
position: sticky;
top: 0;
background-color: var(--lighter-background);
backdrop-filter: blur(5px);
padding: 2rem 0.2rem;
z-index: 1000;
padding-top: 1px;
}
header:hover, footer:hover {
transition: box-shadow 0.1s ease;
box-shadow: 0px 0px 10px 5px var(--main-heading-color);
}
header button {
background-color: rgba(40, 40, 40, 0.7);
color: var(--accent-color);
border-color: var(--accent-color);
width: 25%;
backdrop-filter: blur(0px);
padding-top: 1%;
padding-bottom: 1%;
margin-left: 6%;
border-radius: 5px;
transition: all 0.3s ease;
}
header button:hover {
opacity: 1;
background-color:#e54b4b;
color: black;
border-radius: 15px;
box-shadow: 0px 0px 10px var(--accent-color);
}
main {
margin: 0 2rem;
padding-bottom: 8rem;
}
h1 {
text-align: center;
color: var(--main-heading-color);
}
h2, h3, h4, h5, h6 {
color: var(--heading-color);
}
#introText {
display: block;
padding: 2rem 0.2rem 1rem;
}
a {
color: var(--main-heading-color);
transition: color 0.4s;
}
a:hover {
color: var(--accent-color);
}
#spotify {
display: flex;
flex-direction: column;
}
.spotify-wrapper {
width: 100%;
margin: 0;
display: grid;
gap: 20px;
}
.youtube-wrapper {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
@media screen and (min-width: 1080px) {
.spotify-wrapper {
grid-template-columns: 1fr 1fr;
}
.youtube-wrapper iframe {
flex-basis: calc(33.3% - 13.3px);
}
}
@media screen and (min-width: 1440px) {
.spotify-wrapper {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
}
#contribution_link {
display: block;
padding-top: 1rem;
}
footer {
background-color: var(--lighter-background);
text-align: center;
padding: 2rem 0.2rem;
color: var(--text-color);
width: 99%;
}