-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.css
More file actions
114 lines (101 loc) · 1.82 KB
/
admin.css
File metadata and controls
114 lines (101 loc) · 1.82 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
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}
.input-container {
display: -ms-flexbox;
display: flex;
width: 100%;
margin-bottom: 15px;
}
.icon {
padding: 10px;
background: dodgerblue;
color: white;
min-width: 50px;
text-align: center;
}
.input-field {
width: 100%;
padding: 10px;
outline: none;
}
.input-field:focus {
border: 2px solid dodgerblue;
}
.btn {
background-color: dodgerblue;
color: white;
padding: 15px 20px;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
.btn:hover {
opacity: 1;
}
body {font-family: "Lato", sans-serif;}
* {
margin: 0;
padding: 0;
}
.tablink {
color: white;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
font-size: 17px;
width: 33.3333333333%;
}
.contAdmn {
display: -webkit-inline-flex;
display: -moz-inline-flex;
display: -ms-inline-flex;
display: -o-inline-flex;
display: inline-flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.tabcontent {
color: white;
display: none;
text-align: center;
}
#Products {background-color:blue;}
#Categories {background-color:purple;}
#Users {background-color:green;}
#cat {
width: 100%;
min-height: : 800px;
background-color: grey;
display: block;
}
#usrs {
width: 100%;
min-height: : 800px;
background-color: grey;
display: none;
}
#prdc {
width: 100%;
min-height: : 800px;
background-color: grey;
display: none;
}
.imgCont {
width: 40px;
height: 40px;
display: -webkit-inline-flex;
display: -moz-inline-flex;
display: -ms-inline-flex;
display: -o-inline-flex;
display: inline-flex;
align-items: center;
justify-content: center;
}
.imgCont img {
width: 25px;
height: 25px;
}