PersonalWebsite/css/home.css

88 lines
1.4 KiB
CSS
Raw Normal View History

/*!
* home.css - https://heili.eu
* Licensed under the MIT license - http://opensource.org/licenses/MIT
* E-mail: lukas.heiligenbrunner@gmail.com
* Copyright (c) 2020 Lukas Heiligenbrunner
*/
2020-03-18 09:22:43 +00:00
#section1 {
background-color: #311E25;
color: white;
}
.lightOpacity {
opacity: 0.6;
}
.bigText {
font-family: 'Helvetica Neue', fantasy;
}
#preTitle {
opacity: 0.8;
color: #fffd80;
}
#homepicture {
float: left;
height: 400px;
}
/* screen larger than 600px -- desktop */
@media screen and (min-width: 1201px) {
#section1 {
padding-top: 200px;
}
#preTitle {
font-size: 35px;
}
#titleText {
font-size: 80px;
}
#subTitleText {
font-size: 50px;
}
#meaningFullSentence {
width: 40%;
}
2020-03-18 09:33:03 +00:00
/* todo maybe a bit weird?? */
#homepicture:hover {
box-shadow: rgba(2, 12, 27, 0.7) 0px 10px 30px 0px;
transition: all 500ms;
}
2020-03-18 09:22:43 +00:00
}
/* Screen smaller than 600px -- mobile */
@media screen and (max-width: 1200px) {
#section1 {
padding-top: 100px;
height: 90%;
}
#preTitle {
font-size: 15px;
}
#titleText {
font-size: 30px;
}
#subTitleText {
font-size: 20px;
}
#meaningFullSentence {
width: 100%;
font-size: 13px;
}
#homepicture {
height: 300px;
width: 100%;
}
}