-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (82 loc) · 1.62 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
.nav{
height: 50px;
background: blue;
}
.nav div{
display: inline-block;
position: absolute;
left: 0;
padding: 15px;
font-size: 20px;
color: white;
}
.nav ul{
position: absolute;
right: 5px;
}
.nav ul li{
display: inline-block;
}
.nav ul li a{
color: white;
padding: 5px;
}
.home{
background: url("../images/homeback.jpg");
background-size: cover;
height: 100vh;
}
.home.text-container{
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 90vh;
}
.about.about-content{
margin: 150px auto 0 auto;
width: 500px;
}
.about.about-content h1{
text-align: center;
font-family: 'Roboto',sans-serif;
color: red;
}
.about.about-content p{
text-align: justify;
font-family: 'Lato',sans-serif;
color: green;
}
.services.services-content{
margin: 80px auto 0 auto;
text-align: center;
}
.services-content.card-container ul{
padding: 0;
}
.services-content.card-container ul li{
list-style: none;
display: inline-block;
margin: 20px;
width: 300px;
}
.services-content.card-container ul li p{
text-align: justify;
font-family: 'Lato',sans-serif;
color: green;
}
.services.services-content h1{
font-family: 'Roboto',sans-serif;
color: red;
}
.contact.contact-content{
margin: 80px auto 0 auto;
text-align: center;
}
.contact.contact-content h1{
font-family: 'Roboto',sans-serif;
color: red;
}
.contact.contact-content.address-holder{
font-family: 'Lato',sans-serif;
}