Files
Jump/web/assets/css/styles.css
2022-02-04 10:28:44 +00:00

100 lines
1.9 KiB
CSS

* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
color: #fff;
font-family: -apple-system,system-ui,Ubuntu,Roboto,"Open Sans","Segoe UI","Helvetica Neue";
font-size: 1em;
text-align: center;
background: #000;
}
.fixed {
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
.background {
filter: brightness(0.55) blur(13px);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
transform: scale(1.07);
z-index: 1;
}
body::after {
content: '';
position:fixed;
top: 0;
left: 0;
right:0;
bottom:0;
background-image: url(../images/overlay.png);
opacity: 0.6;
z-index: 2;
}
.content {
z-index: 10;
display: flex;
flex-direction: column;
justify-content:center;
}
.greeting {
font-size: 2.5em;
text-transform: capitalize;
text-shadow: 1px 2px 14px #000000;
margin-bottom: 30px;
}
.sites, .sites li {
padding: 0;
margin: 0;
list-style-type: none;
font-weight: 300;
font-size: 14px;
}
.sites li {
display: inline-block;
margin-bottom:20px;
}
.sites li a {
color: inherit;
text-decoration: none;
}
.sites .icon {
display: block;
background-color: #fff;
width: 75px;
height: 75px;
border-radius: 10px;
border: .2em solid #fff;
box-shadow: 0 1px 5px rgba(0,0,0,.3);
margin: 0 11px 7px 11px;
padding: 15px;
}
.sites .icon:hover {
border-color: #007aff;
transition: border-color .1s;
}
.sites .icon img {
width:100%;
}
.sites .name {
display: block;
width: 100%;
max-height: 3.3em;
overflow: hidden;
word-wrap: break-word;
text-shadow: 1px 1px 2px #000000
}