-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (57 loc) · 1.07 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
/* Global Styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
background-image: linear-gradient(
to bottom,
#a8dadc 50%,
#bcd8d9 65%,
#d0d8dd 55%,
#e6eff5 100%
);
height : 100vh;
}
/* Header Styles */
header {
background-color: #333;
color: bisque;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
}
h1 {
font-size: 2rem;
font-weight: 700;
text-transform: uppercase;
}
nav ul {
list-style: none;
display: flex;
}
nav ul li {
margin-right: 1rem;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-size: 1.2rem;
font-weight: 600;
letter-spacing: 0.5px;
transition: all 0.3s ease;
}
nav ul li a:hover {
color: #f0ad4e;
}
/* Main Styles */
main {
max-width: 960px;
margin: 0 auto;
padding: 2rem;
}
section {
margin-bottom: 2rem;
}