PersonalWebsite/css/home.css

97 lines
1.5 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;
padding-top: 200px;
2020-03-18 09:22:43 +00:00
}
.lightOpacity {
opacity: 0.6;
}
.bigText {
font-family: 'Helvetica Neue', fantasy;
}
#preTitle {
font-size: 35px;
2020-03-18 09:22:43 +00:00
opacity: 0.8;
color: #fffd80;
}
#homepicture {
float: left;
height: 400px;
}
#selfimg1 {
display: block;
margin-left: auto;
margin-right: auto;
height: 100%
}
#titleText {
font-size: 80px;
}
2020-03-18 09:22:43 +00:00
#subTitleText {
font-size: 50px;
}
2020-03-18 09:22:43 +00:00
#meaningFullSentence {
width: 40%;
}
2020-03-18 09:22:43 +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:33:03 +00:00
/* height smaller than 720px */
@media screen and (max-height: 720px) {
#homepicture {
height: 300px;
2020-03-18 09:33:03 +00:00
}
2020-03-18 09:22:43 +00:00
}
/* Screen smaller than 600px -- general small width screens */
2020-03-18 09:22:43 +00:00
@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%;
}
}
@media only screen and (min-width: 600px) {
/* For tablets: */
2020-03-18 09:22:43 +00:00
}