-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
106 lines (86 loc) · 1.4 KB
/
responsive.css
File metadata and controls
106 lines (86 loc) · 1.4 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
/* navbar */
.navbar {
width: 100vw;
height: 5rem;
position: fixed;
top: 0;
z-index: 1;
background-color: #23232e;
transition: width 200ms ease;
}
.navbar-nav {
padding: 0;
margin: 0;
display: flex;
align-items: center;
}
.nav-link {
display: flex;
align-items: center;
height: 5rem;
}
.logo {
font-weight: bold;
text-transform: uppercase;
margin-bottom: 1rem;
text-align: center;
color: #ececec;
background: #141418;
font-size: 1.5rem;
letter-spacing: 0.3ch;
width: 100%;
}
.nav-link img {
width: 2rem;
min-width: 2rem;
margin: 0 1.5rem;
}
.link-text{
color: white;
}
.nav-item {
display: none;
}
/* Mobile View */
main {
margin: 5rem 0rem;
padding: 0;
}
h2{
padding: 1rem 0rem;
}
.margin {
margin: 0rem 1rem;
}
.songlist {
grid-template-columns: 1fr 1fr;
}
.songinfo-container {
flex-direction: column;
}
.songinfo {
position: static;
margin-bottom: 0.5rem;
}
@media only screen and (max-width: 300px) {
:root {
font-size: 8px;
}
}
@media only screen and (min-width: 300px) {
:root {
font-size: 14px;
}
}
@media only screen and (min-width: 400px) {
:root {
font-size: 16px;
}
}
/* @media only screen and (min-width: 768px) {
} */
@media only screen and (min-width: 850px) {
:root {
font-size: 15px;
}
}