forked from zero-to-mastery/recycling-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (62 loc) · 999 Bytes
/
style.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
body {
background: linear-gradient(to right, #ADbef6, #f74782);
}
.container {
text-align: center;
}
.recycle_symbol {
height: 90px;
width: 90px;
vertical-align: top;
}
@media only screen and (max-width: 770px) {
.title {
font-size: 90%;
}
.recycle_symbol {
height: 70px;
width: 70px;
}
.info {
font-size: 70%;
}
}
@media only screen and (max-width: 730px) {
.title {
font-size: 70%;
}
.info {
font-size: 60%;
}
}
@media only screen and (max-width: 550px) {
.title {
font-size: 50%;
}
p {
font-weight: bold;
}
.recycle_symbol {
height: 55px;
width: 55px;
}
.info {
font-size: 40%;
}
}
.title {
display: inline-block;
margin: 0.2% 0%;
width: 25%;
}
h1 {
font-family: Roboto;
font-size: 281%;
margin: 0% 2%;
}
p {
text-align: center;
font-family: Montserrat;
font-size: 100%;
margin-top: 0;
}