-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.css
More file actions
65 lines (56 loc) · 1.18 KB
/
admin.css
File metadata and controls
65 lines (56 loc) · 1.18 KB
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
*{
box-sizing: border-box;
}
body{
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
background-repeat: no-repeat;
background-size: cover;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin:10% auto;
border:1px solid black;
width:35%;
}
form{
width:100%;
}
h1{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 45px;
}
.btn{
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
margin-bottom: 20px;
}
.btn-login{
background-color: #4CAF50;
font-size: 15px;
padding: 8px 12px;
border: none;
box-shadow:inset 2px 2px 3px rgba(255,255,255,0.6),inset -2px -2px 3px rgba(0,0,0,0.6);
}
.btn-login:hover {
cursor: pointer;
background-color: green;
}
input{
width: 90%;
margin: 10px 10px 20px 20px;
background-color:#e5e5e5;
padding: 12px;
}
label{
margin: 10px 10px 20px 20px;
font-size: 20px;
}