meeat/static/style.css

41 lines
476 B
CSS
Raw Normal View History

2022-11-05 09:51:32 +01:00
body {
font-family: sans;
}
.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-07 21:42:24 +01:00
body {
display: grid;
2022-11-07 23:06:51 +01:00
grid-template-columns: 1fr 1fr;
grid-column-gap: 2em;
2022-11-07 21:42:24 +01:00
}
#hello {
grid-column: 1 / 3;
}
2022-11-07 23:06:51 +01:00
h1, h2 {
2022-11-07 21:42:24 +01:00
grid-column: 1 / 3;
}
2022-11-07 23:06:51 +01:00
.result-item {
padding: 1em;
border: #CCC 1px solid;
border-radius: 0.2em;
color: #888;
}