-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (75 loc) · 1.41 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
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
body{
background-color: white;
color: black;
font-size: 16px;
font-family: Arial, Helvetica, sans-serif;
padding: 0px;
margin: 0px;
}
.nav{
background-color: cadetblue;
color: white;
}
.nav ul{
margin: 0px;
padding: 0px;
list-style-type: none;
font-size: 0px;
}
.nav ul li{
padding: 16px;
text-align: center;
font-size: 1.2rem;
border-bottom: 1px solid black;
transition: background-color 0.2s;
}
.nav ul li:hover{
background-color: black;
}
.image-area{
background-image: url("Background.png");
background-position: center center;
background-size: cover;
padding-top: 200px;
padding-bottom: 200px;
}
.centered-container{
max-width: 1020px;
margin: 0px auto;
padding: 0px 16px;
}
.image-text{
text-align: center;
background-color: black;
color: white;
font-size: 2.5rem;
}
.intro-text{
color: grey;
font-size: 1.5rem;
text-align: center;
padding-top: 50px;
padding-bottom: 50px;
}
.single-service{
text-align: center;
margin-bottom: 32px;
}
.single-service p{
padding: 0px 16px;
}
@media screen and (min-width: 700px){
.nav ul{
text-align: right;
}
.nav ul li{
display: inline-block;
border-bottom: 0px;
border-left: 1px solid black;
text-align: left;
}
.single-service{
width: 50%;
float: left;
}
}