Files

129 lines
2.0 KiB
CSS
Raw Permalink Normal View History

2023-08-23 16:53:48 -04:00
/****************************************************************************
* Specific elements. *
****************************************************************************/
html {
height:100%;
}
body {
height: 100%;
margin: 0px;
}
2023-08-23 21:57:43 -04:00
#id_username {
width: 100%;
}
#id_password {
width: 100%;
}
2023-09-19 02:11:19 -04:00
a:link {
color: #ffff00;
}
a:visited {
color: #009CD9;
}
2023-07-30 20:31:34 -04:00
/****************************************************************************
* Containers. *
****************************************************************************/
.centered-container {
width: 100%;
text-align: center;
margin-bottom: 0.5em;
}
.background {
2023-09-19 02:11:19 -04:00
background-color: darkslategray;
color: lightgray;
2023-07-30 20:31:34 -04:00
}
.image-container {
2023-08-23 21:57:43 -04:00
max-width: 900px;
max-height: 600px;
2023-07-30 20:31:34 -04:00
}
.fc {
width: fit-content;
}
.h90 {
height: 90%;
}
.full-width {
width: 100%;
}
2023-08-23 21:57:43 -04:00
.fixed-width {
width: 300px;
2023-08-23 17:45:39 -04:00
}
2023-07-30 20:31:34 -04:00
/****************************************************************************
* Content. *
****************************************************************************/
2023-08-23 21:57:43 -04:00
.image {
max-width: 100%;
max-height: 600px;
width: auto;
2023-07-30 20:31:34 -04:00
}
.mauto {
margin: auto;
}
2023-08-23 21:57:43 -04:00
.mauto-top {
margin: 200px auto;
}
2023-08-19 23:11:36 -04:00
.navigation-icon {
width: 100px;
}
2023-08-20 12:44:41 -04:00
.small-nav-icon {
width: 3em;
}
2023-08-19 23:11:36 -04:00
.mb-2 {
margin-bottom: 2em;
}
2023-08-20 12:44:41 -04:00
.mr-2 {
margin-right: 2em;
}
2023-08-23 22:01:09 -04:00
.ml-4 {
margin-left: 4em;
}
2023-08-20 12:44:41 -04:00
.ml-2 {
margin-left: 2em;
}
2023-08-23 17:45:39 -04:00
.clear-btn {
2023-08-21 21:20:27 -04:00
border: none;
background-color: #00000000;
}
.search-box {
height: 2.5em;
2023-08-21 21:20:27 -04:00
}
2023-08-23 17:45:39 -04:00
.float-right {
float: right;
}
2023-07-30 20:31:34 -04:00
/****************************************************************************
* Grid. *
****************************************************************************/
.column {
text-align: center;
border: black 1px solid;
}