Init
This commit is contained in:
commit
164556764a
5 changed files with 144 additions and 0 deletions
55
style.css
Normal file
55
style.css
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
body {
|
||||
background-color: #e2eff3;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
max-width: 70em;
|
||||
margin: 0 auto;
|
||||
background-color: #FFC63F;
|
||||
}
|
||||
|
||||
.items {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.items > li {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.items > li a {
|
||||
width: 8em;
|
||||
height: 8em;
|
||||
background: #D66C00;
|
||||
margin: 2em;
|
||||
border-radius: 4em;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.items > li a:hover {
|
||||
background: #f39a3f;
|
||||
}
|
||||
|
||||
.items > li.face-up a {
|
||||
background-color: #ed8112;
|
||||
}
|
||||
|
||||
.fullview {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background-color: #858c8f90;
|
||||
padding: 1em;
|
||||
box-sizing: border-box;
|
||||
cursor: default;
|
||||
}
|
||||
.fullview > div {
|
||||
background-color: #858c8f;
|
||||
width: 20em;
|
||||
margin: 5em auto;
|
||||
position: relative;
|
||||
height: 30em;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue