39 lines
595 B
CSS
Executable File
39 lines
595 B
CSS
Executable File
@import url('../fonts/stylesheet.css');
|
|
@import url('../fontawesome-free-6.6.0-web/css/all.min.css');
|
|
@import url('../vendor/bulma/css/bulma.min.css');
|
|
|
|
:root {
|
|
--arcoa-blue: rgba(66,135,199,0.98);
|
|
}
|
|
|
|
body {
|
|
font-family: 'nunitolight';
|
|
}
|
|
|
|
.arcoa-menu {
|
|
background-color: var(--arcoa-blue);
|
|
min-height: 100vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#vocabs a,
|
|
#records a {
|
|
color: #fff;
|
|
}
|
|
|
|
.table.record td,
|
|
.table.record th {
|
|
border: none;
|
|
}
|
|
|
|
.table.record th {
|
|
min-width: 240px;
|
|
}
|
|
|
|
.table td {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.results tr > th {
|
|
text-align: center !important;
|
|
} |