samuel-philipp.de/css/app.css

87 lines
1.5 KiB
CSS
Raw Normal View History

2017-01-13 23:36:43 +00:00
@font-face {
2018-02-02 23:44:26 +00:00
font-family: 'Minotaur';
src: local('Minotaur Phatte'), url(../font/minotaur.ttf) format('truetype');
2017-01-13 23:36:43 +00:00
}
body {
color: #fff;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
2018-10-13 11:55:44 +00:00
body {
padding: 0;
margin: 0;
2017-01-13 23:36:43 +00:00
}
2018-10-13 11:55:44 +00:00
.image {
display: block;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
2017-01-13 23:36:43 +00:00
position: fixed;
2018-10-13 11:55:44 +00:00
top: -25px;
left: -25px;
width: calc(100% + 50px);
height: calc(100% + 50px);
z-index: 0;
2018-02-02 23:44:26 +00:00
}
2018-10-13 11:55:44 +00:00
#developer {
background-image: url('../img/sp-codes.png');
2018-02-02 23:44:26 +00:00
}
2018-10-13 11:55:44 +00:00
#magician {
background-image: url('../img/sp-magic_overlay.png');
2017-01-13 23:36:43 +00:00
}
2018-10-13 11:55:44 +00:00
.headers {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
/*justify-content: stretch;*/
align-items: stretch;
/*align-content: stretch;*/
2017-01-13 23:36:43 +00:00
text-align: center;
}
2018-10-13 11:55:44 +00:00
.headers .magician {
2018-02-02 23:44:26 +00:00
color: #000000;
font-family: "Minotaur", cursive;
2018-02-02 23:54:12 +00:00
font-weight: normal;
2018-10-13 11:55:44 +00:00
font-size: 5rem;
text-shadow: 0 0 1rem #ffffff;
2017-01-13 23:36:43 +00:00
}
2018-10-13 11:55:44 +00:00
.headers .developer {
2017-01-13 23:36:43 +00:00
color: #ffffff;
2018-02-02 23:44:26 +00:00
font-family: "Minotaur", monospace;
2018-02-02 23:54:12 +00:00
font-weight: bold;
2018-10-13 11:55:44 +00:00
font-size: 5rem;
text-shadow: 0 0 1rem #000000;
}
.headers a {
2018-02-02 23:54:12 +00:00
text-decoration: none;
2017-01-13 23:36:43 +00:00
}
2018-10-13 11:55:44 +00:00
.headers .codes {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
2017-01-13 23:36:43 +00:00
}
2018-10-13 11:55:44 +00:00
.headers .magic {
flex-grow: 0.6;
display: flex;
align-items: center;
justify-content: center;
}
.headers .padding {
flex-grow: 1.3;
2016-10-28 17:05:19 +00:00
}