Tryumph/style.css

47 lines
699 B
CSS
Raw Permalink Normal View History

center {
text-align: center;
}
2022-07-07 14:13:51 +02:00
body {
2022-07-08 01:37:30 +02:00
font-size: 15px;
2022-07-07 14:13:51 +02:00
font-family: sans-serif;
background-color: #222828;
color: #cdd;
margin: auto;
display: block;
max-width: 700px;
2022-07-07 14:13:51 +02:00
padding: 20px;
2022-07-07 11:31:01 +02:00
word-wrap: break-word;
2022-07-07 14:13:51 +02:00
text-align: justify;
}
pre {
2022-07-08 01:37:30 +02:00
border: 2px dashed #fff;
padding: 10px;
white-space: pre-wrap;
2022-07-08 01:37:30 +02:00
text-align: left;
font-size: 12px;
}
2022-07-07 15:58:53 +02:00
h1 {
text-align: center;
}
h2,h3 {
text-align: left;
}
input,button,select {
2022-07-07 14:13:51 +02:00
background-color: #222828;
color: #cdd;
border: 2px dashed #cdd;
}
2022-07-07 15:59:21 +02:00
input.button,button,select {
2022-07-07 14:13:51 +02:00
border: 1px solid #cdd;
}
2022-07-09 11:22:30 +02:00
a {
color: #fff;
text-decoration: underline dashed #888 1px;
}