mirror of
https://github.com/dpc/tagwiki
synced 2024-11-15 21:24:50 +00:00
24 lines
346 B
CSS
24 lines
346 B
CSS
body {
|
|
max-width: 40em;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
a.pure-button {
|
|
padding: .5em 1em;
|
|
}
|
|
|
|
.button-warning {
|
|
color: white;
|
|
background: rgb(223, 117, 20);
|
|
}
|
|
.button-green {
|
|
color: white;
|
|
background: rgb(28, 184, 65);
|
|
}
|
|
|
|
/* TOOD: make the whole form exactly fit the screen (including the buttons) */
|
|
textarea {
|
|
height: 90vh;
|
|
width: 100%;
|
|
}
|