forked from chakrabortydeep/WiggleSwap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (55 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
header{
width:100%;
height: 100vh;
background-color: #FFF5E1;
/* background:linear-gradient(rgba(0,0,0,0.8) , rgba(0,0,0,0.2)); */
background-size: cover;
font-family:sans-serif;
}
nav{
width: 100%;
height:100px;
color:aliceblue;
display: flex;
justify-content: space-around;
align-items: center;
}
.menu a{
text-decoration: none;
color: black;
padding: 10px 20px ;
font-size: 17px;
}
.menu a:hover{
color: #C80036
}
.logo{
width: 150px;
margin-right: 400px;
}
.Log{
width: 150px;
display: flex;
margin-right: 400px;
cursor: pointer;
}
.register a{
text-decoration: none;
color: whitesmoke;
padding: 10px 20px ;
font-size: 20px;
border:2px solid rgba(2, 61, 29, 0.265) ;
border-radius:20% ;
background-color: #C80036;
}
.register a:hover{
background-color: transparent;
color: black;
border: 2px solid black;
transition: linear 0.2s;
}