tilde.institute-site/tilde.css

197 lines
2.5 KiB
CSS
Raw Normal View History

2018-11-23 21:10:46 +00:00
body {
background-color: #0B173B;
2020-02-23 08:22:23 +00:00
font-family: sans-serif;
color: #ffffff;
margin: 0 auto;
2020-05-22 11:38:53 +00:00
max-width: 90%;
2019-09-17 05:12:35 +00:00
font-size: 1.0em;
2018-11-23 21:10:46 +00:00
}
2020-05-22 07:36:20 +00:00
pre {
display: block;
white-space: pre;
word-break: break-all;
overflow-x: auto;
}
2018-11-23 21:10:46 +00:00
.date {
2019-09-17 05:12:35 +00:00
font-weight: bold;
2018-11-23 21:10:46 +00:00
}
2020-05-22 07:36:20 +00:00
2018-11-23 21:10:46 +00:00
#logo {
text-align: center;
2020-02-23 08:22:23 +00:00
font-family: monospace;
font-size: 1em;
2018-11-23 21:10:46 +00:00
}
2020-05-22 07:36:20 +00:00
2018-11-23 21:10:46 +00:00
#navigation {
2020-06-22 12:27:55 +00:00
display: flex;
flex-wrap: wrap;
text-decoration: none;
margin: 0;
padding: 0;
}
2020-06-22 12:27:55 +00:00
#navigation div {
background-color: #0B3861;
2020-06-22 12:27:55 +00:00
flex-grow: 1;
min-width: 3.2rem;
padding: .2em;
margin: .05em;
text-align: center;
2018-11-23 21:10:46 +00:00
}
2020-05-22 07:36:20 +00:00
2020-06-22 12:27:55 +00:00
#navigation div:hover {
background-color: #045fb4;
}
2020-06-22 12:27:55 +00:00
#navigation div a {
color: white;
text-align: center;
text-decoration: none;
}
2020-05-22 07:36:20 +00:00
#content {
margin: 0 auto;
2018-11-23 21:10:46 +00:00
}
2020-05-22 07:36:20 +00:00
@media (min-width: 1024px) {
2020-05-22 11:38:53 +00:00
body {
max-width: 75%;
}
#news {
float: right;
max-width: 29%;
}
#front-content {
max-width: 69%;
float: left;
}
2020-05-22 09:21:32 +00:00
#sshfp {
float: left;
}
2020-05-22 07:36:20 +00:00
}
2018-12-04 02:38:54 +00:00
#code {
2020-02-23 08:22:23 +00:00
font-family: monospace;
font-size: 1.0em;
max-width: 75%;
margin: 0 auto;
2018-12-04 02:38:54 +00:00
}
2020-05-22 07:36:20 +00:00
.code {
2020-02-23 08:22:23 +00:00
font-family: monospace;
font-size: 1.0em;
max-width: 50%;
margin: 0 auto;
}
2020-05-22 07:36:20 +00:00
2020-05-15 02:18:09 +00:00
.faq {
width: 75%;
}
2020-05-22 07:36:20 +00:00
2020-05-15 02:18:09 +00:00
.faq .q {
margin-top: 3rem;
font-weight: bold;
font-style: italic;
2020-05-15 02:18:09 +00:00
text-indent: 0rem;
font-size: 1.2em;
}
2020-05-22 07:36:20 +00:00
2020-05-15 02:18:09 +00:00
.faq p {
text-indent: 2rem;
}
2020-05-22 07:36:20 +00:00
2020-05-15 02:18:09 +00:00
.faq h1 {
font-size: 1.75em;
text-align: center;
margin-bottom: -1.5rem;
}
2020-05-22 07:36:20 +00:00
2018-11-23 21:10:46 +00:00
a:link {
text-decoration: underline;
color:#ffffff;
2018-11-23 21:10:46 +00:00
}
a:visited {
color:#ffffff;
text-decoration: underline;
2018-11-23 21:10:46 +00:00
}
a:hover {
color:#a4a4a4;
text-decoration: underline;
2018-11-23 21:10:46 +00:00
}
p {
2019-09-17 05:12:35 +00:00
text-indent: 15px;
2018-11-23 21:10:46 +00:00
}
2020-05-22 07:36:20 +00:00
2018-11-23 21:10:46 +00:00
code {
text-indent: 2rem;
2020-02-23 08:22:23 +00:00
font-family: monospace;
font-size: 1.0em;
padding-left: 0.3rem;
padding-right: 0.3rem;
2018-11-23 21:10:46 +00:00
}
2020-05-22 07:36:20 +00:00
2018-11-23 21:10:46 +00:00
em {
font-weight: bold;
2018-11-23 21:10:46 +00:00
}
2020-05-22 07:36:20 +00:00
2018-11-23 21:10:46 +00:00
h1 {
2018-12-05 08:09:14 +00:00
font-size: 1.75em;
2018-11-23 21:10:46 +00:00
text-align: center;
}
2020-05-22 07:36:20 +00:00
2019-01-03 01:38:59 +00:00
h2 {
2019-06-03 22:06:53 +00:00
font-size: 1.4em;
2019-01-03 01:38:59 +00:00
}
2020-05-22 07:36:20 +00:00
2018-11-24 05:58:19 +00:00
h3 {
2019-09-17 05:12:35 +00:00
font-size: 1.2em;
2018-11-24 05:58:19 +00:00
}
2020-05-22 07:36:20 +00:00
h4 {
2019-06-03 22:06:53 +00:00
font-size: 1.1em;
margin-top: 0.2rem;
}
2020-05-22 07:36:20 +00:00
.userlist {
margin: 0 auto;
}
2020-05-22 07:36:20 +00:00
.userlist ul {
list-style-position: inside;
display: flex;
flex-flow: row wrap;
justify-content: space-evenly;
list-style-type: "\00BB\0020";
padding-left: 3em;
}
.userlist li {
white-space: nowrap;
flex: 10em;
}
.userlist p {
text-align: center;
}
.signup {
text-align: center;
}
.signup input {
margin-bottom: 1.6rem;
}
.signup h3 {
margin: 0.5rem;
}
.signup p {
padding-bottom: 0.3rem;
}