Tryumph/style.css

33 lines
479 B
CSS
Raw Normal View History

center {
text-align: center;
}
2022-07-07 14:13:51 +02:00
body {
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;
}
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;
}