-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (62 loc) · 1.09 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
html {
max-width:950px;
min-width:400px;
padding:10px;
margin:0px auto;
background-color:#d1d1d1;
font-family:"Roboto", sans-serif;
font-size:11pt;
color:#3b3b3b;
}
body, h1, h2, h3, h4, p {
margin:0;
}
a {
color:#256D25;
-webkit-transition:color 0.3s;
-moz-transition:color 0.3s;
-ms-transition:color 0.3s;
-o-transition:color 0.3s;
transition:color 0.3s;
}
a:hover {
color:#3b3b3b;
}
header {
padding:5px 0;
margin:5px 0;
background:transparent url("img/mug.svg") no-repeat center right;
}
h1, h2, h3 {
font-weight:normal;
font-family:"Chau Philomene One", sans-serif;
}
.logo {
float:right;
height:80px;
}
section {
background-color:#fff;
margin:15px 0 20px 0;
padding:10px;
overflow:auto;
box-shadow: 0 2px 3px #999;
}
section h3 {
background-color:#254D25;
color:#fff;
text-align:center;
width:200px;
margin:-10px 0 10px -10px;
}
.map {
border:1px solid #888888;
float:right;
}
.address {
margin-top:20px;
}
footer {
font-size:small;
text-align:center;
}