Second Initial commit
This commit is contained in:
parent
7c1a04bf54
commit
786fb74190
4 changed files with 110 additions and 1 deletions
81
root/css/base.css
Normal file
81
root/css/base.css
Normal file
|
@ -0,0 +1,81 @@
|
|||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: Roboto;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Roboto;
|
||||
src: url(/roboto-regular.ttf);
|
||||
}
|
||||
|
||||
.darkerbar {
|
||||
background: lightgrey;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#content > p {
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
#topbar {
|
||||
display: inline-block;
|
||||
height: 5em;
|
||||
border-bottom: grey 1px solid;
|
||||
}
|
||||
|
||||
#content {
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
a.item {
|
||||
text-decoration: none;
|
||||
display: inline-flex;
|
||||
flex: 0 2 80em;
|
||||
}
|
||||
|
||||
div.item {
|
||||
background: lightgrey;
|
||||
display: flex;
|
||||
flex: 0 2 80em;
|
||||
margin: 0.1em;
|
||||
padding: 0em 0.4em;
|
||||
border: 1px grey solid;
|
||||
border-radius: 0.5em;
|
||||
box-sizing: border-box;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
div.item:hover {
|
||||
background: beige;
|
||||
}
|
||||
|
||||
h2.item {
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
color: black;
|
||||
min-width: 7em;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.desc {
|
||||
text-decoration: none;
|
||||
font-size: 1em;
|
||||
color: black;
|
||||
margin: 0 3em;
|
||||
text-align: center;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
div.item-list {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
footer {
|
||||
display: block;
|
||||
bottom: 0;
|
||||
height: 10em;
|
||||
border-top: grey 1px solid;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue