anvil/html/skins/alteeve/main.css
Digimer c962a9ac79 * Added the loading of the CGI module when the environment is set to 'html'.
* Added a check to Database->archive_database() to return immediately if the check_tables array is empty.
* Created the new Get->cgi() method that reads in CGI variables (as set by the special 'cgi_list' variable).
* Got more work done on the config_step1 funtions.

Signed-off-by: Digimer <digimer@alteeve.ca>
2017-09-04 17:10:02 +02:00

128 lines
2.3 KiB
CSS

/*
Colours;
- Darkest Gray: #343434
- Logo Gray: #9ba0a5
- Lightest Gray: #f7f7f7
- Font Dark Gray: #444444
- Font Light Gray: #f2f2f2
- Alteeve Red: #d02724
- Footer background: #171717
- Footer text: #515151
*/
input[type=text] {
width: 100%;
padding: 6px 10px;
margin: 2px 0;
display: inline-block;
border: 1px solid #9ba0a5;
border-radius: 2px;
box-sizing: border-box;
background-color: #343434;
color: #f7f7f7;
}
input[type=number] {
width: 100%;
padding: 6px 10px;
margin: 2px 0;
display: inline-block;
border: 1px solid #9ba0a5;
border-radius: 2px;
box-sizing: border-box;
background-color: #343434;
color: #f7f7f7;
}
body {
font-family: 'Dejavu Sans', Arial, Helvetica, Verdana, Sans-Serif;
background-image: url("/skins/alteeve/images/Texture.jpg");
background-repeat: repeat;
color: #f2f2f2;
}
.body_table {
width: 90%;
/* border: 0.1em solid blue; */
margin: auto;
top: 0;
position: absolute;
left: 5%
}
.config_header1 {
color: #f7f7f7;
text-align: center;
font-size: 2em;
}
.config_header2 {
color: #f2f2f2;
text-align: center;
font-size: 1em;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
td {
/* border: 1px solid green; */
padding: 0;
border-collapse: collapse;
}
.logo {
border-top: 0.3em solid transparent;
border-left: 0.3em solid transparent;
border-right: 0.3em solid transparent;
height: 2.5em;
}
.top_icon {
border-top: 0.3em solid transparent;
border-left: 0.3em solid transparent;
border-right: 0.3em solid transparent;
height: 2.5em;
}
.header {
text-align: center;
background: #343434;
color: #f2f2f2;
border-bottom: 0.2em solid #d02724;
}
.header a:link, .header a:visited {
cursor: pointer;
color: #f6f6f6;
text-decoration: none;
}
.header a:hover {
cursor: pointer;
color: #f6f6f6;
text-decoration: none;
}
.footer {
text-align: center;
background: #171717;
font-size: 12px;
color: #515151;
width: 90%;
position: fixed;
bottom: 0;
left: 5%;
}
.footer a:link, .footer a:visited {
cursor: pointer;
text-decoration: none;
color: #515151;
}
.footer a:hover {
cursor: pointer;
text-decoration: none;
color: #616161;
}