-
Notifications
You must be signed in to change notification settings - Fork 0
/
aestheti.css
105 lines (86 loc) · 1.44 KB
/
aestheti.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
body {
font-family: 'Helvetica Neue', sans-serif;
font-size: 14px;
line-height: 1.5;
padding: 20px 40px 40px;
color: #333;
}
h1 {
font-size: 59px;
line-height: 1.118644068;
}
h2 {
font-size: 37px;
line-height: 1.216216216;
}
h3 {
font-size: 23px;
line-height: 1.434782609;
}
h4 {
font-size: 16px;
line-height: 1.4375;
}
@media only screen and (max-width: 640px) {
h1 {
font-size: 37px;
line-height: 1.216216216;
}
h2 {
font-size: 23px;
line-height: 1.434782609;
}
h3 {
font-size: 16px;
line-height: 1.4375;
}
}
a {
color: inherit;
text-decoration: none;
font-weight: 700;
}
ul {
list-style: none;
margin-left: 0;
padding-left: 0;
font-size: 16px;
line-height: 1.4375;
}
li {
margin-bottom: 1em;
}
h2 {
border-bottom: 1px solid #eaeaea;
}
.opening-time {
display: flex;
justify-content: space-between;
}
.address p {
line-height: 1;
margin: 0 0 0.5em 0;
}
.icon {
display: inline-block;
width: 3em;
height: 3em;
vertical-align: middle;
background-repeat: no-repeat;
background-position: 50%;
border: 2px solid;
border-radius: 50%;
margin-right: 0.5em;
}
.icon--telephone {
background-image: url('./style/icons/telephone.svg');
}
.icon--email {
background-image: url('./style/icons/envelope.svg');
}
.icon--twitter {
background-image: url('./style/icons/twitter.svg');
}
.icon--facebook {
background-image: url('./style/icons/facebook.svg');
}