-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain-page.css
More file actions
82 lines (72 loc) · 1.62 KB
/
main-page.css
File metadata and controls
82 lines (72 loc) · 1.62 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
body {
margin: auto;
}
header h1{
font-size: 40px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: black;
padding: 75px;
margin: 0 auto;
background-color: rgb(173, 216, 230);
background-size: cover;
text-align: center;
}
nav {
padding: 20px;
margin: auto;
background-color: rgb(119, 2, 119);
display: flex;
justify-content: center;
justify-content: space-evenly;
}
nav a {
display: inline-block;
margin: 15px 0 15px 0;
border: none;
text-align: center;
padding: 10px;
margin: 0 15px 0 15px;
cursor: pointer;
}
nav a:hover {
background-color: blanchedalmond;
border-radius: 10px;
}
.navbutton {
color: goldenrod;
font-size: 18px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#construction {
max-width: 1300px;
margin: 0 auto;
}
body h2 {
font-size: 35px;
text-align: center;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
footer {
margin: 0 auto;
padding: 30px;
border: solid 3px rgb(255, 212, 23);
max-width: 500px;
background-color: rgb(119, 2, 119);
}
address {
color: goldenrod;
text-align: center;
font-size: 18px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
@media screen and (max-width: 1000px) {
nav {
display: grid;
}
}