meeat/static/style.css

129 lines
1.5 KiB
CSS
Raw Normal View History

2022-11-05 09:51:32 +01:00
body {
font-family: sans;
2022-12-08 14:15:20 +01:00
margin: 0;
}
header {
height: 100px;
}
h1 {
padding-top: 19px;
margin-top: 0px;
margin-left: 200px;
2022-11-05 09:51:32 +01:00
}
.sortable {
}
.sort-item {
padding: 1em;
border: #CCC 1px solid;
border-radius: 0.2em;
2022-11-07 23:06:51 +01:00
cursor: grab;
2022-11-05 09:51:32 +01:00
}
2022-11-07 21:42:24 +01:00
2022-11-07 21:40:20 +01:00
.blue-background-class {
background: #CDF;
2022-11-07 23:06:51 +01:00
cursor: grabbing;
2022-11-07 21:40:20 +01:00
}
2022-11-13 21:37:54 +01:00
.voteform {
2022-11-09 00:04:07 +01:00
padding: 1rem;
2022-11-07 21:42:24 +01:00
display: grid;
2022-11-07 23:06:51 +01:00
grid-template-columns: 1fr 1fr;
grid-column-gap: 2em;
2022-11-09 00:04:07 +01:00
line-height: 1.5em;
2022-11-07 21:42:24 +01:00
}
2022-11-09 00:04:07 +01:00
p {
margin-top: 0;
}
#hello, #voters {
2022-11-07 21:42:24 +01:00
grid-column: 1 / 3;
}
2022-12-08 14:15:20 +01:00
h2 {
2022-11-07 21:42:24 +01:00
grid-column: 1 / 3;
2022-11-09 00:04:07 +01:00
line-height: 1.1em;
2022-11-07 21:42:24 +01:00
}
2022-11-07 23:06:51 +01:00
.result-item {
padding: 1em;
border: #CCC 1px solid;
border-radius: 0.2em;
color: #888;
}
2022-11-13 21:37:54 +01:00
.ballot {
border: 1px solid black;
margin: 1em;
border-radius: 0.4em;
}
.pos_1 {
background-color: hsl(120, 80%, 70%);
color: black;
}
.ballotlist {
display: flex;
flex-wrap: wrap;
}
.voter {
padding: 1em;
background-color: hsl(240, 10%, 80%);
}
2022-12-08 14:15:20 +01:00
.logo {
position: absolute;
}
.logo-1 {
animation-name: fadeoutin;
animation-duration: 10s;
animation-iteration-count: infinite;
}
.logo-2 {
animation-name: fadeinout;
animation-duration: 10s;
animation-iteration-count: infinite;
}
@keyframes fadeinout {
0% {
opacity: 0%
}
10% {
opacity: 100%
}
50% {
opacity: 100%
}
60% {
opacity: 0%
}
100% {
opacity: 0%
}
}
@keyframes fadeoutin {
0% {
opacity: 100%
}
10% {
opacity: 0%
}
50% {
opacity: 0%
}
60% {
opacity: 100%
}
100% {
opacity: 100%
}
}