forked from underscorgan/community_management
-
Notifications
You must be signed in to change notification settings - Fork 10
/
styles.css
163 lines (129 loc) · 3.07 KB
/
styles.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
table {
border-collapse: collapse;
border-spacing: 0;
width: 80%;
/* border: 1px solid #ddd; */
position: relative;
}
th,
td {
border: 1px solid #ccc;
text-align: left;
padding: 8px;
position: relative;
}
* {
box-sizing: border-box;
}
#inputSearch {
background-position: 10px 10px;
background-repeat: no-repeat;
width: 80%;
font-size: 16px;
padding: 12px 20px 12px 40px;
border: 1px solid #ddd;
margin-bottom: 12px;
}
tr:nth-child(even) {
background-color: white;
}
.labels tr td {
/* background-color: #32B232;
*/
font-weight: bold;
}
.label tr td label {
display: block;
}
.btn2 {
display: inline-block;
text-decoration: none;
background: #26b405;
color: #FFF;
width: 21px;
height: 21px;
line-height: 40px;
border-radius: 50%;
text-align: center;
vertical-align: middle;
overflow: hidden;
border: dashed 0px #FFF;
transition: .4s;
}
.btn-2 {
background-image: linear-gradient(to right, #13ac13 0%, #1d933f 51%);
}
.btn1 {
display: inline-block;
text-decoration: none;
background: #fe1a00;
color: #FFF;
width: 21px;
height: 21px;
line-height: 40px;
border-radius: 50%;
text-align: center;
vertical-align: middle;
overflow: hidden;
border: dashed 0px #FFF;
transition: .4s;
}
.btn-1 {
background-image: linear-gradient(to right, #ef240d 0%, #d20a0a 51%);
}
.button1 {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
height: 40px;
width: 50px;
}
.btn2:hover {
background: linear-gradient(to bottom, #5cb811 5%, #77d42a 100%);
background-color: #5cb811;
}
.btn1:hover {
background: linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);
background-color: #e85332;
}
.center {
text-align: center;
}
@media only screen and (min-width: 0px) and (max-width: 700px) {
td {
display: inline-block;
padding: 5px;
width: 100%;
}
}
@media only screen and (min-width: 0px) and (max-width: 700px) {
th {
display: inline-block;
padding: 5px;
width: 100%;
}
}
@media (min-device-width: 800px) and (max-device-width: 1280px) {}
/* Portrait */
@media (max-device-width: 800px) and (orientation: portrait) {}
/* Landscape */
@media (max-device-width: 1280px) and (orientation: landscape) {}
/* ----------- Galaxy Tab S ----------- */
/* Portrait and Landscape */
@media (min-device-width: 800px) and (max-device-width: 1280px) and (-webkit-min-device-pixel-ratio: 2) {}
/* Portrait */
@media (max-device-width: 800px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {}
/* Landscape */
@media (max-device-width: 1280px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {}