-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
123 lines (105 loc) · 1.79 KB
/
Copy pathmain.css
File metadata and controls
123 lines (105 loc) · 1.79 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
html, body{
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
margin: 0;
padding: 0;
background:#f1f1f1;
color:#333;
}
body{
text-align: center;
}
a{
font:inherit;
color:inherit;
}
h1{
font-weight:600;
font-size: 1.4rem;
}
.header{
max-width:50rem;
width:100%;
margin:0 auto;
text-align: center;
border-bottom: 1px solid #d2232a;
padding:2rem 1rem 1rem 1rem;
box-sizing: border-box;
}
.logo{
width:10rem;
max-width:30%;
height:auto;
}
.contactBox{
display:flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid #d2232a;
}
.emergencyBox{
text-align:center;
/* border:1px solid #d2232a; */
padding:1rem 2rem;
}
.emergencyBox>.icon{
color:#d2232a;
width:4rem;
height:4rem;
}
.emergencyBox>.number{
color:#d2232a;
font-size:2rem;
font-weight:bold;
line-height: 1;
}
.chefBox{
padding:1rem;
}
.chefBox .title{
font-weight:bold;
margin-top:0.5rem;
}
.chefBox span{
display:block;
}
.pageWrapper{
max-width:50rem;
width:100%;
padding:1rem;
box-sizing: border-box;
margin:0 auto;
text-align: left;
}
.smallHeader{
font-weight:600;
font-size: 1.2rem;
}
.socialsLinks{
text-decoration:none;
opacity:0.6;
transition: opacity 0.2s ease-in-out;
}
.socialsLinks:hover{
opacity:1;
}
.socialIcons{
width:1.6rem;
height:1.6rem;
margin:0 0.5rem 0 0;
}
.footer{
text-align: center;
font-size: 0.8rem;
padding-bottom:5rem;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}