-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (87 loc) · 1.34 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
/* GLOBAL */
* {
margin: 0;
padding: 0;
}
body {
background-color: #FFEDD5; /* hex: 0-F */
font-family: 'Roboto', sans-serif;
}
ul {
list-style: none;
}
/* FONTS */
h1, h2, h3, .price {
font-family: 'Roboto Serif', serif;
text-transform: uppercase;
color: #2D2C2A;
}
/* HEADER */
header {
padding: 32px 0;
text-align: center;
}
header, section {
max-width: 310px;
margin: 0 auto;
}
header h1 {
margin-bottom: 4px;
font-size: 28px;
line-height: 33px;
}
header h1 span {
color: #995000;
}
header p {
font-size: 14px;
line-height: 16px;
color: rgba(0, 0, 0, 0.7);
}
/* BUTTON */
button {
background-color: #FED7AA;
color: #2D2C2A;
width: 80px;
height: 30px;
border-radius: 5px;
text-transform: uppercase;
font-family: 'Roboto', sans-serif;
font-size: 12px;
cursor: pointer;
border: none;
margin-top: 10px;
}
/* SECTION */
section {
margin-bottom: 24px;
}
section h2 {
background-color: #FED7AA;
padding: 8px 16px;
text-align: center;
margin-bottom: 24px;
font-size: 18px;
}
/* LISTA */
ul li {
margin-bottom: 16px;
display: flex;
}
li .details {
max-width: 240px;
}
.details h3 {
margin-bottom: 8px;
font-size: 16px;
line-height: 19px;
}
.details p {
color: rgba(0, 0, 0, 0.6);
font-size: 14px;
line-height: 21px;
}
.price {
margin-left: 5px;
line-height: 10px;
}