-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
84 lines (64 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
79
80
81
82
83
84
/* Large desktop */
@media (min-width: 1200px) {
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
}
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
}
/* Landscape phones and down */
@media (max-width: 480px) {
}
/* Center list */
ul.center-list {
float: none !important;
text-align: center;
}
ul.center-list > li {
float: none !important;
display: inline-block;
}
ul.center-list > li:first-child {
margin-left: 0;
}
/* Temp solution for images */
.fixed-size {
height: 150px;
/*width: 200px;*/
}
.score-1 .rating {
font-size: 1.5em;
line-height: 1.5em;
}
.score-2 .rating {
font-size: 1.3em;
line-height: 1.5em;
}
.score-3 .rating {
font-size: 1.1em;
line-height: 1.5em;
}
.score img {
height: 50px;
margin: 0 auto;
}
.score-1 img {
height: 150px;
}
.score-2 img {
height: 130px;
}
.score-3 img {
height: 110px;
}
.delete,
.rating {
font-size: 0.9em;
}
footer {
margin-top: 20px;
padding: 5px;
border-top: 1px solid #aaa;
color: #aaa;
}