2013-05-31 15:53:19 +00:00
|
|
|
title: $:/boot/boot.css
|
2013-02-03 23:02:23 +00:00
|
|
|
type: text/css
|
|
|
|
|
|
|
|
/*
|
|
|
|
Basic styles used before we boot up the parsing engine
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-06-12 11:40:48 +00:00
|
|
|
Error message and password prompt
|
2013-02-03 23:02:23 +00:00
|
|
|
*/
|
2013-06-12 11:40:48 +00:00
|
|
|
|
2014-08-28 16:39:32 +00:00
|
|
|
.tc-error-form {
|
2018-05-10 13:45:50 +00:00
|
|
|
font-family: sans-serif;
|
2013-06-12 11:40:48 +00:00
|
|
|
color: #fff;
|
2018-05-10 13:45:50 +00:00
|
|
|
z-index: 20000;
|
|
|
|
position: fixed;
|
2013-06-12 11:40:48 +00:00
|
|
|
background-color: rgb(255, 75, 75);
|
|
|
|
border: 8px solid rgb(255, 0, 0);
|
2018-05-10 13:45:50 +00:00
|
|
|
border-radius: 8px;
|
|
|
|
width: 50%;
|
|
|
|
margin-left: 25%;
|
|
|
|
margin-top: 4em;
|
2018-05-10 14:29:31 +00:00
|
|
|
padding: 0 2em 1em 2em;
|
2013-06-12 11:40:48 +00:00
|
|
|
}
|
|
|
|
|
2018-05-10 13:45:50 +00:00
|
|
|
.tc-error-form h1 {
|
|
|
|
text-align: center;
|
2013-06-12 11:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 16:39:32 +00:00
|
|
|
.tc-error-prompt {
|
2018-05-10 13:45:50 +00:00
|
|
|
text-align: center;
|
2013-06-12 11:40:48 +00:00
|
|
|
color: #000;
|
2018-05-10 13:45:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tc-error-message {
|
|
|
|
overflow: auto;
|
|
|
|
max-height: 40em;
|
|
|
|
padding-right: 1em;
|
2018-05-10 14:29:31 +00:00
|
|
|
margin: 1em 0;
|
2018-05-10 13:45:50 +00:00
|
|
|
white-space: pre-line;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tc-password-wrapper {
|
|
|
|
font-family: sans-serif;
|
|
|
|
z-index: 20000;
|
|
|
|
position: fixed;
|
|
|
|
text-align: center;
|
|
|
|
width: 200px;
|
|
|
|
top: 4em;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -144px; /* - width/2 - paddingHorz/2 - border */
|
|
|
|
padding: 16px 16px 16px 16px;
|
|
|
|
border-radius: 8px;
|
2013-06-12 11:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 16:38:53 +00:00
|
|
|
.tc-password-wrapper {
|
2013-02-03 23:02:23 +00:00
|
|
|
color: #000;
|
|
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
|
|
|
background-color: rgb(197, 235, 183);
|
|
|
|
border: 8px solid rgb(164, 197, 152);
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:38:53 +00:00
|
|
|
.tc-password-wrapper form {
|
2013-02-03 23:02:23 +00:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:38:53 +00:00
|
|
|
.tc-password-wrapper h1 {
|
2013-02-03 23:02:23 +00:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 20px;
|
2014-01-10 16:51:39 +00:00
|
|
|
padding-bottom: 16px;
|
2013-02-03 23:02:23 +00:00
|
|
|
}
|
2014-01-19 18:43:02 +00:00
|
|
|
|
2014-08-28 16:38:53 +00:00
|
|
|
.tc-password-wrapper input {
|
2014-01-19 18:43:02 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|