-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
58 lines (55 loc) · 1.08 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
body {
margin: 0;
background-color: rgb(253, 255, 227);
}
h2{
background-color:rgb(240, 82, 103);
font-style: bold;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.top{
height: 80px;
font-size: 50px;
font-weight: bold;
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
padding: 22px 20px;
color: rgb(255, 30, 30);
}
nav ul{
list-style: none;
float: right;
margin: 0;
padding: 0;
display: flex;
}
nav ul li a {
list-style: none;
color: rgb(160, 95, 117);
padding: 12px 30px;
font-size: 14px;
text-decoration: none;
}
nav ul li a:hover{
background: rgb(48, 0, 6)
border-radius: 20px;
}
.btn{
border-style: none;
color: rgb(104, 0, 23);
}
div form{
padding: 30px 22px;
align-self: center;
width: 250px;
background-color: rgb(234, 255, 255);
}
nav{
position: fixed;
top:0;
left:0;
height:100px;
width:100%;
padding:10px 50px;
box-sizing:border-box;
background-color: rgb(71, 0, 15);
}