-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (63 loc) · 1.12 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
/*learn css styles*/
/*use rgb color scheme for colors*/
/*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:Georgia, 'Times New Roman', Times, serif;
}
/*look for an enthusiastic photo of unique curtains for the background
body{
width: 100%;
height: 100vh;
background: url() center / no-repeat /cover ;
}
header{
Position: fixed;
width: 100%;
left: 0;
top: 0;
padding: 0 10px;
}
/*NAVIGATION BAR
.navbar{
display: flex;
padding: 22 0px;
align-items: center;
max-width: 1200px;
margin: 0 auto;
justify-content: space-between;
}
.navbar{
display: flex;
gap: 10px;
text-decoration: none;
align-items: center;
}
.navbar .logo img {
width: 40px;
border-radius: 50%;
}
.navbar .logo h2{
color: #fff;
font-size: 1.7rem;
font-weight: 600;
}
.navbar .links {
display: flex;
list-style: none;
gap: 35px;
}
.navbar .links a{
color:#fff;
text-decoration: none;
font-size: 1.1rem;
font-weight: 500;
}
.navbar .links a:hover {
color:antiquewhite;
}
.navbar .login-btn {
border: none;
outline: none;
}*/