Buckler/static/buckler.css

82 lines
1014 B
CSS
Raw Normal View History

2019-09-20 19:24:12 -04:00
body {
margin-left: 10%;
margin-right: 10%;
background-color: lightgray;
font-family: Helvetica,sans-serif;
2019-09-27 13:57:00 -04:00
font-size: 14px;
2019-09-20 19:24:12 -04:00
}
header {
margin-bottom: 3em;
display: flex;
}
#logo {
height: 5em;
2020-10-05 11:02:00 -04:00
width: 5em;
2019-09-20 19:24:12 -04:00
margin-right: 1em;
}
main {
display: grid;
gap: 2em;
2019-09-24 19:34:20 -04:00
}
main section {
2019-09-20 19:24:12 -04:00
background-color: whitesmoke;
2019-09-25 12:51:36 -04:00
padding: 2% 5%;
2019-09-20 19:24:12 -04:00
border-radius: 0.5em;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
0 3px 1px -2px rgba(0, 0, 0, 0.2),
0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
2019-09-27 13:57:00 -04:00
.sub_section {
box-shadow: none;
border: 1px solid lightgray;
}
h2, h3 {
2019-09-25 12:51:36 -04:00
font-size: 16px;
margin: 0;
cursor: pointer;
}
2019-09-27 13:57:00 -04:00
h3 {
font-size: 14px;
}
2019-09-20 19:24:12 -04:00
#avail_sites {
margin: 0;
padding-left: 1em;
list-style-type: none;
}
2019-09-26 19:15:46 -04:00
table {
2019-09-20 19:24:12 -04:00
border: 1px solid lightgray;
border-collapse: collapse;
2019-09-26 19:15:46 -04:00
width: 100%;
2019-09-20 19:24:12 -04:00
}
2019-09-26 19:15:46 -04:00
tr {
2019-09-20 19:24:12 -04:00
border: 1px solid lightgray;
}
2019-09-26 19:15:46 -04:00
td {
2019-09-20 19:24:12 -04:00
text-align: center;
}
2019-09-27 13:53:36 -04:00
2019-09-29 13:25:07 -04:00
.no_borders {
2019-09-27 13:53:36 -04:00
border: none;
border-collapse: separate;
width: auto;
}
2019-09-29 13:25:07 -04:00
.no_borders tr {
2019-09-27 13:53:36 -04:00
border: none;
}
2019-09-29 13:25:07 -04:00
.no_borders td {
2019-09-27 13:53:36 -04:00
text-align: left;
}