-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (95 loc) · 1.74 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
89
90
91
92
93
94
95
body{
margin: 0;
padding: 0;
font-family: sans-serif;
}
.login-box{
width: 280px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
color: rgb(0, 0, 0);
}
.login-box h1{
float: left;
font-size: 40px;
border-bottom: 6px solid #4caf50;
margin-bottom: 40px;
padding: 13px 0;
}
.login-box h2{
padding: 16px 0;
border-bottom: 3px solid #4caf50;
}
.label option{
color:black;
font-family: sans-serif;
font-weight: bold;
margin-top: 40px;
}
.textbox{
width: 100%;
overflow: hidden;
font-size: 20px;
padding: 8px 0;
margin: 8px 0;
border-bottom: 1px solid #4caf50;
}
.textbox i{
width: 26px;
float: left;
text-align: center;
}
.textbox input{
border: none;
outline: none;
background: none;
color: black;
font-size: 18px;
width: 80%;
float: left;
margin: 0 10px;
}
.textbox textarea{
border: none;
outline: none;
font-family: sans-serif;
font-size: 18px;
width: 80%;
float: left;
color: black;
margin: 0 10px;
}
.btn{
width: 100%;
background: #adffb0;
border: 2px solid #4caf50;
border-radius: 30px;
color: black;
padding: 5px;
font-size: 18px;
cursor: pointer;
margin: 12px 0;
box-shadow: 4px 4px 5px grey;
}
.btn:hover{
background: #4caf50;
}
.footer{
background-color: black;
color: white;
font-family: sans-serif;
text-align: center;
border-radius: 30px;
padding: 3px;
box-shadow: 3px 3px 5px grey;
}
.footer a{
color: pink;
cursor: pointer;
font-family: Arial, Helvetica, sans-serif;
}
.footer:hover{
color: yellow;
}