-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
122 lines (86 loc) · 1.61 KB
/
App.css
File metadata and controls
122 lines (86 loc) · 1.61 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
119
120
121
122
.App {
text-align: center;
}
.App-body {
background-color: grey;
}
.spacer {
width: 100%;
height: 75px;
}
.spacer-button {
width: 100%;
height: 20px;
}
.bg {
background-color: grey;
}
.listqueue{
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
position: relative;
padding: 0;
text-align: center;
margin: 0;
color: rgb(46, 34, 40);
}
.listqueue td,
.listqueue th{
border: 1px solid #ddd;
padding: 0.5px;
}
.listqueue tr:nth-child(even) {
background-color: #f2f2f2;
}
.listqueue tr:hover {
background-color: #ddd;
}
.listqueue th {
padding-top: 2px;
padding-bottom: 2px;
text-align: center;
background-color: rgba(1, 38, 59, 0.767);
color: rgb(243, 227, 3);
}
.addbutton {
background-color:#282e30;
border-radius:8px;
border:1px solid #18ab29;
display:inline-block;
cursor:pointer;
color:rgb(56, 212, 186);
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:13px;
padding:5px 10px;
text-decoration:none;
text-shadow:0px 1px 0px #2f6627;
}
.addbutton :hover{
color:#e7983d;
}
.addbutton :active{
position:relative;
top:1px;
color:#e7983d;
}
.addqueue{
width: 100%;
height: 56px;
border-radius: 4px;
position: relative;
background-color: rgba(255,255,255,0.3);
transition: 0.3s all;
}
.form-group {
width: 50%;
height: 56px;
border-radius: 4px;
position: relative;
background-color: rgba(160, 19, 19, 0.3);
transition: 0.3s all;
}
.form-group:hover {
background-color: rgba(255, 255, 255, 0.45);
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}