First frontend revision
This commit is contained in:
parent
c1af90eccf
commit
192548e38b
5 changed files with 7755 additions and 2 deletions
47
static/css/style.css
Normal file
47
static/css/style.css
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
body {
|
||||
background: #181818;
|
||||
color: #ffffff;
|
||||
font-familly: sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
h1,h2 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
figure.big {
|
||||
display: table-cell;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.big img {
|
||||
max-height: calc(100vh - 5px);
|
||||
max-width: calc(100vw - 5px);
|
||||
}
|
||||
|
||||
a {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
img {
|
||||
box-shadow: 0px 0px 10px #9AB;
|
||||
transition: box-shadow 1s ease-out;
|
||||
}
|
||||
img:hover {
|
||||
box-shadow: 0px 0px 20px #FED;
|
||||
}
|
||||
|
||||
.big figcaption {
|
||||
background: #656565;
|
||||
color: #FFF;
|
||||
font-weight: bold;
|
||||
margin: -100px auto;
|
||||
opacity: 0.65;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue