Create style.css
This commit is contained in:
parent
5dea55986c
commit
d8461d5fd8
1 changed files with 98 additions and 0 deletions
98
style.css
Normal file
98
style.css
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
body {
|
||||||
|
background: #eaeaea;
|
||||||
|
margin: 0;
|
||||||
|
height: 100vh;
|
||||||
|
width: 100vw;
|
||||||
|
display: flex;
|
||||||
|
font-family: monospace;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
border-radius: 15px;
|
||||||
|
}
|
||||||
|
#stickers {
|
||||||
|
border-top: 1px solid black;
|
||||||
|
padding: 10px;
|
||||||
|
height: 40px;
|
||||||
|
flex-grow: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
#innerSticker {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-around;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
display: flex;
|
||||||
|
align-content: bottom;
|
||||||
|
align-items: flex-end;
|
||||||
|
width: 100vw;
|
||||||
|
|
||||||
|
}
|
||||||
|
#webring {
|
||||||
|
background: white;
|
||||||
|
padding: 15px;
|
||||||
|
width: 155px;
|
||||||
|
border-left: black solid 1px;
|
||||||
|
border-top: black solid 1px
|
||||||
|
}
|
||||||
|
|
||||||
|
#back {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
background: black;
|
||||||
|
color: white;
|
||||||
|
padding: 0px 5px
|
||||||
|
}
|
||||||
|
|
||||||
|
#content {
|
||||||
|
box-shadow: -25px 15px 10px lightgray;
|
||||||
|
border-radius: 7px;
|
||||||
|
background: white;
|
||||||
|
border: 1px solid gray;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
overflow: hidden auto;
|
||||||
|
}
|
||||||
|
#content #left {
|
||||||
|
margin-left: 30px;
|
||||||
|
margin-bottom: ;
|
||||||
|
margin-block: auto;
|
||||||
|
padding-block: 30px;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
padding-right: 15px;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
.lighter {
|
||||||
|
color: gray;
|
||||||
|
}
|
||||||
|
#right {
|
||||||
|
height: 100%;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
right: -100px;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
border-radius: 7px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
#innerSticker a img {
|
||||||
|
border-radius: 0;
|
||||||
|
width: 88px;
|
||||||
|
height: 33px;
|
||||||
|
}
|
||||||
|
a img {
|
||||||
|
padding-right: 5px;
|
||||||
|
height: 25px;
|
||||||
|
width: 25px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue