-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin.css
97 lines (84 loc) · 1.49 KB
/
admin.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
96
97
body {
font-family: 'Nunito', sans-serif;
color: #384047;
}
form {
max-width: 300px;
margin: 10px auto;
padding: 10px 20px;
background: #f4f7f8;
border-radius: 8px;
}
.style8 {
color: #6633CC;
font-weight: bold;
}
h1 {
margin: 0 0 30px 0;
text-align: center;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
textarea,
select {
background: rgba(255,255,255,0.1);
border: none;
font-size: 16px;
height: auto;
margin: 0;
outline: 0;
padding: 15px;
width: 100%;
background-color: #e8eeef;
color: #8a97a0;
margin-bottom: 30px;
}
input[type="radio"],
{
margin: 0 4px 8px 0;
}
button {
padding: 1px 39px 18px 39px;
color: #FFF;
background-color: #A9A9A9;
font-size: 18px;
text-align: center;
font-style: normal;
border-radius: 5px;
width: 100%;
border: 1px solid #A9A9A9;
border-width: 1px 1px 3px;
margin-bottom: 10px;
}
button2 {
padding: 1px 39px 18px 39px;
color: #FFF;
background-color: #F1F2F2;
font-size: 18px;
text-align: center;
font-style: normal;
border-radius: 5px;
width: 100%;
border: 1px solid #F1F2F2;
border-width: 1px 1px 3px;
margin-bottom: 10px;
}
.number {
background-color: #5fcf80;
color: #fff;
height: 30px;
width: 30px;
display: inline-block;
font-size: 0.8em;
margin-right: 4px;
line-height: 30px;
text-align: center;
text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}
@media screen and (min-width: 480px) {
form {
max-width: 480px;
}
}