72 lines
1.1 KiB
CSS
72 lines
1.1 KiB
CSS
html {
|
|
padding: 50px;
|
|
text-align: center;
|
|
font-size: 130%;
|
|
white-space: nowrap;
|
|
font-family: "Segoe UI", Tahoma, sans-serif;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
max-width: 1024px;
|
|
margin-left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
table tr > td:nth-child(1) {
|
|
text-align: right;
|
|
}
|
|
table tr > td:nth-child(2) {
|
|
text-align: left;
|
|
width: 100%;
|
|
}
|
|
table tr:first-child > td {
|
|
text-align: center;
|
|
}
|
|
table td {
|
|
padding: 5px 10px;
|
|
vertical-align: top;
|
|
}
|
|
label {
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
button {
|
|
outline: none;
|
|
border: 2px solid #eee;
|
|
background-color: #eee;
|
|
color: #222;
|
|
height: 45px;
|
|
padding: 0 15px;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
margin: 45px 10px;
|
|
cursor: pointer;
|
|
min-width: 150px;
|
|
font-weight: 200;
|
|
}
|
|
button:hover {
|
|
border-color: #ccc;
|
|
background-color: #ccc;
|
|
color: #666;
|
|
}
|
|
button#save {
|
|
background-color: #fff;
|
|
color: #4287f5;
|
|
border-color: #4287f5;
|
|
}
|
|
button#save:hover {
|
|
background-color: #4287f5;
|
|
border-color: #4287f5;
|
|
color: #fff;
|
|
}
|
|
input[type=text], select, textarea {
|
|
min-width: 250px;
|
|
width: 100%;
|
|
height: 45px;
|
|
}
|
|
textarea {
|
|
height: 125px;
|
|
}
|