summaryrefslogtreecommitdiff
path: root/assets/style.css
blob: 439eb7ffcdf52adc01e9c9e867db3119622a0145 (plain)
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
body{
    background-color: #0C1616FF;
    color: #8896b2;
    max-width: 800px;
    min-width: 0px;
    margin: 2em auto !important;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-size: 16px;
    font-family: Open Sans,Arial;
    text-align: center;
    display: block;
}

.next-button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.next-button:hover {
    background-color: #45a049;
}
a{
    color: #00a2e7;
}
a:visited{
    color: #ca1a70;
}
table{
  border-collapse: separate !important;
  border-spacing: 10px 10px;
  border: 1px solid white;
}
tr{
    border: 1px solid white;
}
#usertable{
    display: block ruby;
}
.actiontable{
    display: inline flow-root;
    margin-inline: 10px;
}
.action_name{
    border: none;
  display: inline;
  font-family: inherit;
  font-size: inherit;
  padding: none;
  width: auto;
}
#errorbox{
    border: 1px solid black;
    background-color: darkorange;
}