Skip to content

Commit 40b071f

Browse files
authored
Add files via upload
1 parent 60919c7 commit 40b071f

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

index.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
:root{
2+
--link: hsl(80, 100%, 50%);
3+
--bg1: hsl(0, 0%, 5%); background-color: var(--bg1);
4+
--bg2: hsl(0, 0%, 15%);
5+
--bg3: hsl(0, 0%, 20%);
6+
--bg4: hsl(0, 0%, 30%);
7+
}
8+
9+
a{
10+
color: var(--link); text-decoration: none;
11+
}
12+
13+
.t{
14+
background-color: var(--bg2);
15+
margin: 30px; padding: 30px; text-align: center; font-size: 2.5em;
16+
transition: all 0.5s ease;
17+
}
18+
19+
.t:hover{
20+
21+
}
22+
23+
body{
24+
margin: 0px;
25+
font-family: Bahnschrift, Arial, sans-serif;
26+
color: white;
27+
}
28+
29+
.b{
30+
margin: 10px 20px 0 0; padding: 30px;background-color: var(--bg2);
31+
}
32+
33+
.br{
34+
display: flex;
35+
align-content: flex-start;
36+
margin: 30px;
37+
}

0 commit comments

Comments
 (0)