-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (74 loc) · 1.44 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
88
89
90
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 20px;
}
header {
background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwzNjUyOXwwfDF8c2VhcmNofDN8fGxhYnRvcHN8ZW58MHx8fHwxNjMyNDAxNjE4&ixlib=rb-1.2.1&q=80&w=1080') no-repeat center center/cover;
color: #fff;
padding: 100px 0;
text-align: center;
}
header h1 {
font-size: 3em;
}
header p {
font-size: 1.3em;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
background: #444;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: white;
font-size: 1.2em;
}
nav ul li a:hover {
color: #f4f4f4;
}
section {
padding: 50px 0;
background-color: solid black;
}
section#about {
background: url('https://wallpapers.com/images/high/engineering-background-5u1vmh4f67lgz4uf.webp') no-repeat center center/cover;
color: solid black;
}
section h2 {
font-size: 2.5em;
text-align: center;
}
ul {
list-style: none;
margin: 20px 0;
}
ul li {
padding: 10px 0;
border-bottom: 1px solid #ccc;
}
footer {
text-align: center;
padding: 20px 0;
background: #333;
color: #fff;
}
footer p {
margin: 0;
}