summaryrefslogtreecommitdiff
path: root/src/styles/main.css
blob: b53cfa7e449c72d291701876853169c5971680d5 (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
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
body {
    background: #fff;
    font-size: 14px;
    color: #003049;
    line-height: 1.2;
    padding-bottom: 10em;
}

a,
a:visited {
    color: blue;
}

/* Header */

#header {
    padding: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    margin-bottom: 3em;
}

#header #title a {
    text-decoration: none;
    color: pink;
    font-size: 2em;
    font-weight: bold;
    font-style: italic;
}

/* Object */

.object {
    padding: 2em;
    margin: 2em;
    width: 40em;
    margin-left: auto;
    margin-right: auto;
}

.object.good {
    background-color: green;
}

.object.bad {
    background-color: red;
}

.object .id {
    float: right;
    font-family: monospace;
}

.object td {
    padding-right: 2em;
}

.object .MuiAccordionSummary-content {
    display: none !important;
}

.object .MuiAccordion-root {
    margin-top: 2em !important;
}

.object .MuiAccordionSummary-root {
}

/* List */

#list-container > #controls {
    display: flex;
    justify-content: center;
    margin-bottom: 3em;
}

#list-container > #pagination {
    display: flex;
    justify-content: center;
    margin-top: 3em;
}

#list-container #search {
    display: flex;
}

#list-container > #main > .MuiCard-root:nth-child(odd),
#list-container > #main > .MuiCard-root:nth-child(odd) .MuiAccordion-root,
#list-container
    > #main
    > .MuiCard-root:nth-child(odd)
    .user-presentation-element {
    background-color: #fcfcfc;
}

/* Login */

#login-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

#login {
    height: max-content;
    margin-top: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2em;
}

#login > h1 {
    font-size: 20px;
    margin-bottom: 32px;
}

#login > .ui.input {
    display: block;
    margin-bottom: 1em;
}

#login > .ui.button {
    margin-bottom: 1em;
}

.error {
    color: red;
    font-style: italic;
    font-size: 0.9em;
}

/* Error */

#error-container {
    height: max-content;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20vh;
}