-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.css
More file actions
83 lines (76 loc) · 1.26 KB
/
admin.css
File metadata and controls
83 lines (76 loc) · 1.26 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
*{
padding: 0px ;
margin: 0px;
}
body{
background: rgb(219, 214, 214);
text-align: center;
}
body h1{
color: orange;
font-size: 40px;
}
.login-form, .admin-form{
margin-top: 100px;
}
.login-form h1, .admin-form h1{
font-size: 32px;
color: #34495e;
}
form{
margin-top: 35px;
}
.login-form label, .admin-form label{
font-size: 20px;
color: #34495e;
font-weight: 550;
}
input{
height: 25px;
width: 17%;
font-size: 15px;
padding: 0px 6px;
outline: none;
}
form .submit{
background: #34495e;
border: transparent;
color: #fff;
font-size: 20px;
font-weight: bold;
letter-spacing: 2px;
height: 40px;
width: 10%;
margin-top: 15px;
transition: all 0.5s ease;
}
form .submit:hover{
background: #3498db;
cursor: pointer;
}
/*-------header csss ---------- */
#header{
background:#34495e;
}
#header h1{
color: orange;
}
#header ul{
display: flex;
justify-content: center;
}
#header ul li{
list-style-type: none;
margin: 0px 10px;
padding: 4px 10px;
}
#header ul li a{
color: rgb(219, 205, 205);
font-size: 20px;
font-weight: bold;
text-decoration: none;
transition: all 0.5s ease;
}
#header ul li a:hover{
color: orange;
}