Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SOD/public/stylesheets/style.css

91 lines
1.6 KiB
CSS
Raw Normal View History

2020-08-14 20:08:00 +02:00
html, body {
margin: 0;
height: 100%;
}
2020-06-26 16:59:54 +02:00
body {
2020-08-14 20:08:00 +02:00
display: flex;
align-items: center;
2020-08-14 20:57:19 +02:00
font: large "Lucida Grande", Helvetica, Arial, sans-serif;
2020-08-14 20:08:00 +02:00
background-color: #db970a;
background-image: linear-gradient(white 2px, transparent 2px),
linear-gradient(90deg, white 2px, transparent 2px),
linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
background-position:-2px -2px, -2px -2px, -1px -1px, -1px -1px;
}
2020-08-14 20:57:19 +02:00
@media (hover: none) and (pointer: coarse) {
body {
font-size: xx-large;
}
}
2020-08-14 20:08:00 +02:00
.card {
display: flex;
flex-direction: column;
width: max-content;
height: auto;
padding: 1em;
margin: auto;
background-color: white;
box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 255, .2);
/* overflow-y: scroll; */
}
2020-08-14 20:57:19 +02:00
h1, h2, p, label {
display: block;
2020-08-14 20:08:00 +02:00
text-align: center;
2020-06-26 16:59:54 +02:00
}
a {
color: #00B7FF;
}
2020-08-14 20:08:00 +02:00
#command {
margin: auto;
display: flex;
flex-direction: column;
}
.field {
2020-08-14 20:57:19 +02:00
margin: 1em auto auto auto;
width: 90%;
2020-08-14 20:08:00 +02:00
}
.field input {
box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 255, .2);
2020-08-14 20:57:19 +02:00
margin: auto;
width: 100%;
font-size: 100%;
2020-08-14 20:08:00 +02:00
}
.field input[type="text"], .field input[type="list"] {
2020-08-14 20:57:19 +02:00
height: 2.5vh;
2020-08-14 20:08:00 +02:00
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px gray solid;
}
2020-08-14 20:57:19 +02:00
.field input[type="submit"] {
height: 4vh;
border: none;
2020-08-14 20:08:00 +02:00
}
#command-action {
display: flex;
justify-content: space-around;
}
#add-command p, #remove-command p {
font-weight: bold;
font-size: 2em;
margin: auto auto 1em auto;
}
.hide {
display: none;
}