-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (73 loc) · 1.92 KB
/
style.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
body {
min-width: 400px; }
.wrapper {
width: 100%;
max-width: 350px;
margin: 1em auto; }
#navbar {
background-color: #eaebed !important;
display: flex; }
#navbar div {
display: flex;
justify-content: flex-end;
width: 220px;
margin-left: auto; }
.nav-link {
color: rgba(0, 0, 0, 0.7); }
.active {
color: black; }
form input[type="submit"] {
margin-top: 2em;
display: block;
width: 100%; }
.alert {
transition: opacity 0.6s ease-out;
opacity: 0;
display: none; }
.alert-visible {
transition: opacity 0.3s ease-out;
opacity: 1; }
.visible {
display: block; }
.hidden {
display: none; }
#tableWrapper {
margin: 3em; }
.gray {
background-color: #eaebed; }
.float-right {
float: right; }
.btn.btn-secondary {
margin: 1.2em 0 5em 0; }
.centered {
margin: 0 auto;
display: block; }
@keyframes border-dance {
0% {
background-position: left top, right bottom, left bottom, right top; }
100% {
background-position: left 15px top, right 15px bottom, left bottom 15px, right top 15px; } }
.editable {
background: linear-gradient(90deg, black 50%, transparent 50%), linear-gradient(90deg, black 50%, transparent 50%), linear-gradient(0deg, black 50%, transparent 50%), linear-gradient(0deg, black 50%, transparent 50%);
background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
background-size: 15px 2px, 15px 2px, 2px 15px, 2px 15px;
background-position: left top, right bottom, left bottom, right top;
padding: 10px;
animation: border-dance 3s infinite linear; }
th {
border-bottom: none !important; }
body {
height: 100%; }
.table-input {
width: 100%;
height: 100%;
border: none; }
.table td, .table th {
vertical-align: middle; }
.table td {
max-width: 80px;
max-height: 40px;
overflow: hidden; }
.svg-filter {
filter: invert(100%) sepia(11%) saturate(2%) hue-rotate(340deg) brightness(111%) contrast(101%); }
/*# sourceMappingURL=style.css.map */