-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
108 lines (89 loc) · 1.53 KB
/
styles.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* styles.css */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
header {
background-color: #333;
padding: 20px;
color: #fff;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
margin-right: 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
section {
padding: 100px 0;
text-align: center;
}
#hero {
background-image: url('images/hero.jpg');
background-size: cover;
background-position: center;
height: 600px;
}
.hero-text {
color: #fff;
margin-top: 200px;
}
.hero-text h1 {
font-size: 36px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #333;
color: #fff;
text-decoration: none;
margin-top: 20px;
border-radius: 4px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
.service {
margin-bottom: 50px;
}
.service img {
width: 300px;
height: 200px;
object-fit: cover;
border-radius: 4px;
}
h2 {
margin-bottom: 30px;
}
.about img {
float: left;
margin-right: 20px;
width: 100px;
height: 50px;
object-fit: cover;
border-radius: 4px;
}
form input,
form textarea,
form button {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
border-radius: 4px;
}
footer {
background-color: #333;
padding: 20px;
color: #fff;
text-align: center;
}