-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (63 loc) · 960 Bytes
/
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
.content {
width: 1200px;
margin: auto;
}
.menu {
overflow: hidden;
background-color: #429EA6;
padding: 0;
margin: 0;
}
.menu a:hover, .current {
background-color: #88AB75;
}
.menu li {
display: inline-block;
padding: 15px 25px;
font-size: 24px;
font-family: sans-serif;
color: #eee;
}
.left {
float: left;
}
.right {
float: right;
}
.text-left {
text-align: left;
padding-left: 32%;
padding-right: 2%;
}
.text-right {
text-align: right;
padding-right: 32%;
padding-left: 2%;
}
.text-center {
text-align: center;
width: 35%;
margin-left: auto;
margin-right: auto;
padding: 0;
}
.sectionTitle {
background-image: url('Images/titleImage.jpg');
background-size: cover;
background-repeat: no-repeat;
margin: 0;
padding-bottom: 50px;
padding-top: 50px;
}
.sectionTitle h1, h2{
text-align: center;
margin: 0;
color: #333;
}
.sectionTitle h1 {
font-size: 72px;
}
.sectionTitle h2 {
font-size: 32px;
margin-top: 30px;
}