-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (69 loc) · 1.39 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (69 loc) · 1.39 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
@keyframes bgcolor {
0% {
background-color: rgba(69,163,229, 0.5)
}
30% {
background-color: rgba(102,191,57, 0.5)
}
60% {
background-color: rgba(235,103,15, 0.5)
}
100% {
background-color: rgba(134,76,191, 0.5)
}
}
body {/*
-webkit-animation: bgcolor 20s infinite;
animation: bgcolor 10s infinite;
-webkit-animation-direction: cyclic;
animation-direction: alternate;*/
background-color: rgba(165, 145, 207, 0.4);
}
table {
margin: auto;
border-collapse: collapse;
empty-cells: hide;
}
table th {
padding: 10px 16px;
}
form, button {
margin-left: auto;
margin-right: auto;
}
th {
border: 1px solid black;
margin: -1px;
background-color: rgba(245, 245, 245, 0.7);
}
label {
margin: 5px;
}
th.red {
background-color: rgba(256, 99, 99, .8);
}
th.green {
background-color: lightgreen;
}
th.jolly {
box-shadow: inset 0px 0px 0px 4px yellow;
box-sizing: border-box;
}
/* Buttons */
button, input {
background: rgba(200, 160, 250, .1);
padding: 5px;
border: 1.5px solid black;
border-radius: 8px;
}
button:hover, input[type=submit]:hover {
cursor: pointer;
}
button:hover, input:hover {
background-color: rgba(165, 145, 207, 0.4);
transition: all 0.3s ease-in-out;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
}