forked from spacebar/SplatNet
copy stuff from friends list to equipment (yes thats all ive done im distracted by this live stream)
This commit is contained in:
parent
bc7583c44e
commit
fc65d9a363
2 changed files with 50 additions and 10 deletions
|
|
@ -12,6 +12,16 @@
|
|||
font-style: normal;
|
||||
}
|
||||
|
||||
.content {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 100vw;
|
||||
min-height: 100vh;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
|
|
@ -26,6 +36,7 @@ body {
|
|||
background-repeat: repeat;
|
||||
background-size: 800px 800px;
|
||||
background-attachment: fixed;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.menu-item .hover-state {
|
||||
|
|
@ -112,14 +123,12 @@ body {
|
|||
}
|
||||
|
||||
.logo-left-align {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
margin-left: 40px;
|
||||
padding-left: 40px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#stage-header-logo {
|
||||
|
|
@ -160,11 +169,34 @@ body {
|
|||
.equipmentsubtitle-text {
|
||||
margin: 0;
|
||||
padding-top: 20px;
|
||||
padding-right: 100px;
|
||||
max-width: 1200px;
|
||||
text-align: left;
|
||||
color: white;
|
||||
font-family: "Regular", sans-serif;
|
||||
font-size: 24px;
|
||||
line-height: 1.3;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.splat-info-box {
|
||||
background-color: rgba(0, 0, 0, 0.6);
|
||||
border-radius: 10px;
|
||||
padding: 25px 40px;
|
||||
width: 600px;
|
||||
height: auto;
|
||||
min-height: 150px;
|
||||
position: absolute;
|
||||
top: 180px;
|
||||
left: 40%;
|
||||
transform: translateX(-50%);
|
||||
z-index: 5;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.splat-info-box p {
|
||||
color: #ffffff;
|
||||
font-family: "Regular", sans-serif;
|
||||
font-size: 20px;
|
||||
line-height: 1.6;
|
||||
margin: 0;
|
||||
text-align: left;
|
||||
}
|
||||
Loading…
Reference in a new issue