-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
78 lines (65 loc) · 1.06 KB
/
styles.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
*,
::after,
::before {
padding:0;
margin: 0;
box-sizing: border-box;
}
body {
background: url(https://images.unsplash.com/photo-1488390224393-39b815d3cb3b?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=1350&q=80);
margin: 40px;
font-family: sans-serif;
text-align: center;
}
.audio-container {
text-align: left;
color: #fff;
}
.audio-title {
text-transform: uppercase;
}
.title {
margin: 20px;
}
h1 {
color: #fff;
text-transform: uppercase;
letter-spacing: 8px;
font-weight: bold;
}
h3 {
margin-bottom: 10px;
}
.img-container {
margin: auto;
}
.img-container img {
width: 300px;
}
button {
color: #fff;
font-size: 1.3rem;
background-color: rgb(0, 0, 0);
padding: 8px;
margin: 15px;
margin-left: 7px;
border-radius: 4px;
outline: none;
border: 1px solid #fff;
}
button:hover {
cursor: pointer;
transform: scale(1.1);
color: #bbb;
}
.btns {
margin-left: 15px;
}
@media (max-width: 600px) {
.img-container img {
width: 200px;
}
h1 {
font-size: 1.5rem;
}
}