rate/www/public/global.css

68 lines
944 B
CSS
Raw Permalink Normal View History

2022-09-22 16:00:56 +00:00
html,
body {
position: relative;
width: 100%;
height: 100%;
2022-09-20 13:27:52 +00:00
}
body {
2022-09-22 16:00:56 +00:00
color: #333;
margin: 0;
2022-10-17 15:11:50 +00:00
/* padding: 0; */
2022-09-22 16:00:56 +00:00
box-sizing: border-box;
2022-10-17 22:28:19 +00:00
/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; */
2022-09-20 13:27:52 +00:00
}
a {
2022-09-22 16:00:56 +00:00
color: rgb(0, 100, 200);
text-decoration: none;
2022-09-20 13:27:52 +00:00
}
a:hover {
2022-09-22 16:00:56 +00:00
text-decoration: underline;
2022-09-20 13:27:52 +00:00
}
a:visited {
2022-09-22 16:00:56 +00:00
color: rgb(0, 80, 160);
2022-09-20 13:27:52 +00:00
}
label {
2022-09-22 16:00:56 +00:00
display: block;
2022-09-20 13:27:52 +00:00
}
2022-09-22 16:00:56 +00:00
input,
button,
select,
textarea {
2022-10-17 22:28:19 +00:00
/* font-family: inherit; */
/* font-size: inherit; */
2022-09-22 16:00:56 +00:00
-webkit-padding: 0.4em 0;
padding: 0.4em;
margin: 0 0 0.5em 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 2px;
2022-09-20 13:27:52 +00:00
}
input:disabled {
2022-09-22 16:00:56 +00:00
color: #ccc;
2022-09-20 13:27:52 +00:00
}
button {
2022-09-22 16:00:56 +00:00
color: #333;
background-color: #f4f4f4;
outline: none;
2022-09-20 13:27:52 +00:00
}
button:disabled {
2022-09-22 16:00:56 +00:00
color: #999;
2022-09-20 13:27:52 +00:00
}
button:not(:disabled):active {
2022-09-22 16:00:56 +00:00
background-color: #ddd;
2022-09-20 13:27:52 +00:00
}
button:focus {
2022-09-22 16:00:56 +00:00
border-color: #666;
2022-10-19 22:28:21 +00:00
}