-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.css
59 lines (59 loc) · 1.06 KB
/
signup.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
* {
margin: 0;
padding: 5px;
box-sizing: border-box;
}
.hd {
height: 100vh;
}
.navbar-style {
background-color: oldlace;
box-shadow: 0 5px 10px #efefef;
}
.logo {
height: 65px;
padding: 0px 10px;
}
.icon-bar {
background: rgb(0, 165, 36);
}
li a {
color: black;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
li a:hover {
color: rgb(3, 180, 33);
}
body {
background: black;
}
.row {
height: auto;
width: auto;
background-color: oldlace;
border-radius: 8px;
box-shadow: 10px 10px 10px #efefef;
}
.btn1 {
height: 50px;
width: 100%;
border: 1px solid rgb(0, 161, 40);
color: #333;
border-radius: 4px;
font-weight: bold;
}
.btn1:hover {
background: rgb(0, 161, 40);
border: none;
color: white;
box-shadow: 5px 5px 10px #999;
transition: 0.3s;
}
.signup {
font-size: 40px;
color: rgb(3, 180, 33);
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
text-align: center;
}