PersonalWebsite/css/index.css
lukas-heiligenbrunner 59faacff6e font size improvements
2020-03-16 19:47:15 +01:00

65 lines
1.1 KiB
CSS

body, html {
height: 100%;
/*font-family: Calibre, "San Francisco", "SF Pro Text", -apple-system, system-ui, BlinkMacSystemFont, Roboto, "Helvetica Neue", "Segoe UI", Arial, sans-serif;*/
}
.tile {
height: 70%;
padding-top: 70px;
padding-bottom: 70px
}
#section1 {
padding-top: 200px;
background-color: #311E25;
color: white;
}
.lightOpacity{
opacity: 0.6;
}
.bigText{
transition-delay: 200ms;
font-family: 'Helvetica Neue', fantasy;
-webkit-font-smoothing: antialiased
/* todo here!*/
}
#preTitle{
opacity: 0.8;
}
/* screen larger than 600px -- desktop */
@media screen and (min-width: 601px) {
#preTitle{
font-size: 35px;
}
#titleText {
font-size: 80px;
}
#subTitleText{
font-size: 50px;
}
#meaningFullSentence{
width: 40%;
}
}
/* Screen smaller than 600px -- mobile */
@media screen and (max-width: 600px) {
#preTitle{
font-size: 15px;
}
#titleText {
font-size: 30px;
}
#subTitleText{
font-size: 20px;
}
#meaningFullSentence{
width: 100%;
font-size: 13px;
}
}