-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (76 loc) · 1.32 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
body {
background-color: #181818;
font-family: 'Poppins', sans-serif;
}
.top {
height: 100px;
width: 100%;
}
nav {
display: flex;
align-items: center;
justify-content: center;
}
.login{
color: white;
font-size: 20px;
text-decoration: none;
font-weight: bold;
text-transform: capitalize;
border: 2px solid dodgerblue;
padding: 10px 20px;
margin-left: 10px;
}
nav ul li {
list-style-type: none;
display: inline-block;
justify-content: space-around;
padding: 5px 30px;
}
nav ul li a {
color: white;
font-size: 20px;
text-decoration: none;
font-weight: bold;
text-transform: capitalize;
}
nav ul li a:hover {
color: dodgerblue;
transition: .4s;
}
#ww{
margin: 10px solid white;
}
.middle{
text-align: center;
font-size: 65px;
color: aliceblue;
}
.para{
text-align: center;
font-size: 20px;
color: lightgrey
}
.bottom{
margin-top: 75px;
display: flex;
justify-content: center;
}
.btn{
display: inline-block;
text-decoration: none;
font-size: 25px;
color: white;
}
#b1{
margin:10px;
border: 2px solid #4452fe;
padding: 10px 20px;
background-color: #4452fe;
}
#b2{
margin: 10px;
padding: 10px 20px;
border: 2px solid white;
background-color: black;
}