47 lines
622 B
CSS
47 lines
622 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;
|
||
|
}
|