pajenerator/index.css

53 lines
694 B
CSS
Raw Normal View History

2024-01-23 00:55:15 +01:00
/*
* index.css - Pajenerator stylesheet
*/
body {
font: 1.2em/1.62 sans-serif;
margin: 1em auto;
padding:0 .62em 3.24em;
}
header {
padding-bottom: 15px;
}
input[type="text"] {
padding: 4px;
min-width: 75%;
text-align: center;
margin: 10px;
font-weight: bold;
font-size: larger;
}
button {
font-size: large;
font-weight: bold;
color: white;
background-color: rgb(25, 135, 84);
padding: 6px;
margin-top: 4px;
cursor: pointer;
}
button[disabled] {
cursor: not-allowed;
background-color: gray;
}
input.highlight {
border: solid medium rgb(13, 202, 240);
}
.loading {
cursor: wait !important;
}
2024-01-23 01:17:35 +01:00
footer {
font-size: small !important;
position: fixed;
bottom: 0;
}