-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathadminmain.css
More file actions
118 lines (108 loc) · 2.26 KB
/
Copy pathadminmain.css
File metadata and controls
118 lines (108 loc) · 2.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body, html {
background-color:white;
height: 100%;
margin: 0;
background-position:fixed;
background-repeat: no-repeat;
background-size: cover;
background-attachment:scroll;
font-family:verdana;
background-attachment: fixed;
}
h1{
text-align:center;
color:black;
font-size:20px;
top:30%;
}
button {
border-radius:32px;
background-color: #333;
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}
input[type=submit] {
width: 35%;
background-color: #333;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 8px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #777;
}
input[type=text], input[type=password],input[type=date], input[type=time] ,input[type=textbox],input[type=number]{
width: 35%;
padding: 12px 15px;
margin: 8px 0;
display: block;
border-radius: 20px;
border: 2px solid #bbb;
box-sizing: border-box;
}
select
{
width:35%;
border:1px solid #BDBDBD;
margin:8px 0;
display:block;
padding:12px 15px;
font-size:20px;
border: 4px solid #ccc;
border-radius:8px;
box-sizing: border-box;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #222;
}
li {
float: left;
}
li a, .dropbtn {
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover, .dropdown:hover .dropbtn {
background-color: peru;
}
li.dropdown {
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: slateblue;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
display: block;
}