52 lines
694 B
CSS
52 lines
694 B
CSS
/*
|
|
* 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;
|
|
}
|
|
|
|
footer {
|
|
font-size: small !important;
|
|
position: fixed;
|
|
bottom: 0;
|
|
}
|