-
Notifications
You must be signed in to change notification settings - Fork 0
/
beats.css
58 lines (53 loc) · 953 Bytes
/
beats.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
body {
text-align: center;
font-family: 'Krona One';
}
@font-face{
font-family: 'Krona One';
src: url('KronaOne-Regular.ttf')
}
.beats {
display: flex;
padding: 50% 50%;
justify-content: center;
align-items: center;
font-size: 70px;
}
.mobile-container {
max-width: 480px;
margin: auto;
background-color: #555;
height: 500px;
color: white;
border-radius: 10px;
}
.topnav {
overflow: hidden;
background-color: #333;
position: relative;
}
.topnav #myLinks {
display: none;
}
.topnav a {
color: white;
padding: 70px 70px;
text-decoration: none;
font-size: 30px;
display: block;
}
.dark-mode {
background-color: black;
color: white;
}
.topnav a.icon {
background: black;
display: block;
position: absolute;
right: 0;
top: 0;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}