66 lines
1.2 KiB
CSS
66 lines
1.2 KiB
CSS
<style>
|
|
/* Dark Theme */
|
|
|
|
body {
|
|
background-color: #222;
|
|
color: #fff;
|
|
}
|
|
|
|
/* Style the header */
|
|
.responses {
|
|
font-family: sans-serif;
|
|
font-size: 14.5pt;
|
|
width: 768px;
|
|
padding: 1px;
|
|
margin-top: 100px;
|
|
color: #fff; /* Text color */
|
|
}
|
|
|
|
a {
|
|
color: #007bff; /* Link color */
|
|
}
|
|
|
|
.header {
|
|
font-family: sans-serif;
|
|
padding: 10px 16px;
|
|
background: #333; /* Dark background */
|
|
color: #fff; /* Text color */
|
|
position: fixed;
|
|
top: 5px;
|
|
width: 768px;
|
|
}
|
|
|
|
input[type=text] {
|
|
width: 75%;
|
|
padding: 12px 20px;
|
|
margin: 8px 0;
|
|
box-sizing: border-box;
|
|
text-align: left;
|
|
font-size: 14.5pt;
|
|
background-color: #333; /* Dark background */
|
|
color: #fff; /* Text color */
|
|
border: 1px solid #555; /* Border color */
|
|
}
|
|
|
|
input[type=button], input[type=submit], input[type=reset] {
|
|
font-family: sans-serif;
|
|
background-color: #555; /* Dark button background */
|
|
border: none;
|
|
color: #fff; /* Button text color */
|
|
padding: 16px 32px;
|
|
text-decoration: none;
|
|
margin: 4px 2px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.definition {
|
|
padding: 8px;
|
|
font-family: sans-serif;
|
|
font-size: 14.5pt;
|
|
width: 768px;
|
|
padding: 1px;
|
|
color: #fff; /* Text color */
|
|
background-color: #222; /* Dark background */
|
|
}
|
|
</style>
|