-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (98 loc) · 1.69 KB
/
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
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
107
108
109
110
body {
font-family: sans-serif;
font-weight: 500;
}
h1 {
color: #502050;
}
.row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-items: flex-start;
justify-content: space-around;
margin-top: 2rem;
}
.card {
background-color: #502050;
padding: 20px 15px;
max-width: 350px;
border-radius: 10px;
}
.card__header * {
display: inline-block;
}
.card__header img {
border-radius: 50%;
}
.card__header h1 {
color: white;
}
.card__header span {
color: #ee68a4;
}
@media (max-width: 960px) {
.card {
padding: 30px;
margin-bottom: 10px;
}
.card .card__body {
font-weight: bold;
color: #f7f2f7;
line-height: 25px;
}
.card .card__header {
margin-bottom: 20px;
}
.card .card__header h1 {
text-align: center;
margin: unset;
font-size: 25px;
}
.card .card__header img {
max-width: 50px;
margin-right: 20px;
}
.card .card__header .title * {
display: block;
}
.card .card__header .title h1 {
font-size: large;
}
.card .card__header .title span {
font-size: large;
}
body {
background-image: url(images/bg-pattern-top-mobile.svg);
background-repeat: no-repeat;
margin: 0 30px;
}
.stars {
margin-bottom: 15px;
}
.sub-text {
color: #937b92;
text-align: center;
line-height: 25px;
margin-bottom: 1rem;
}
.col {
width: 100%;
}
.rating {
color: #502050;
background-color: #f7f2f7;
width: 100%;
font-weight: bold;
text-align: center;
padding: 25px 0;
margin-bottom: 1rem;
border-radius: 5px;
font-size: medium;
}
.col > h1 {
text-align: center;
font-size: xx-large;
}
}
/*# sourceMappingURL=style.css.map */