forked from thriveweb/wooswipe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
admin.css
executable file
·80 lines (68 loc) · 1.33 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
#photoswipe_admin h3 {
line-height: 24px;
}
#photoswipe_admin input[type="text"] {
width: 50%;
font-size: 12px;
}
#photoswipe_admin .fl_box {
float: left;
width: 25%;
}
#photoswipe_admin .ps_border {
clear: both;
padding-bottom: 15px;
border-bottom: solid 1px #e6e6e6;
}
@media screen and (max-width: 800px) {
#photoswipe_admin .fl_box {
float: left;
width: 50%;
}
}
@media screen and (max-width: 600px) {
#photoswipe_admin p,
#photoswipe_admin label {
font-size: 10px;
}
}
#wooswipe_admin {
display: flex;
align-items: stretch;
justify-content: space-between;
flex-wrap: wrap;
}
#wooswipe_admin .wooswipe_admin-main {
width: 68%;
}
#wooswipe_admin .wooswipe_admin-sidebar {
width: 30%;
text-align: center;
}
#wooswipe_admin .wooswipe_admin-sidebar .btn {
background: black;
color: white;
display: inline-block;
padding: 0.5rem 1rem;
text-transform: uppercase;
border-radius: 0.2rem;
text-decoration: none;
font-size: 10px;
}
#wooswipe_admin .wooswipe_admin-sidebar .btn:hover {
background: #555;
}
@media screen and (max-width: 600px) {
#wooswipe_admin {
flex-direction: column;
}
#wooswipe_admin .wooswipe_admin-main {
width: 100%;
}
#wooswipe_admin .wooswipe_admin-sidebar {
width: 100%;
text-align: center;
margin: 0 auto;
max-width: 350px;
}
}