95 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| body, html {
 | |
|     height: 100%;
 | |
|     scroll-behavior: smooth;
 | |
|     /*font-family: Calibre, "San Francisco", "SF Pro Text", -apple-system, system-ui, BlinkMacSystemFont, Roboto, "Helvetica Neue", "Segoe UI", Arial, sans-serif;*/
 | |
| }
 | |
| 
 | |
| .tile {
 | |
|     height: 80%;
 | |
|     padding-top: 70px;
 | |
|     padding-bottom: 70px;
 | |
| }
 | |
| 
 | |
| .nav-item{
 | |
|     text-transform: uppercase;
 | |
|     text-decoration: none;
 | |
|     font: bold 15px/1.4 'Open Sans', arial, sans-serif;
 | |
| }
 | |
| 
 | |
| #section1 {
 | |
|     background-color: #311E25;
 | |
|     color: white;
 | |
| }
 | |
| 
 | |
| .lightOpacity {
 | |
|     opacity: 0.6;
 | |
| }
 | |
| 
 | |
| .bigText {
 | |
|     font-family: 'Helvetica Neue', fantasy;
 | |
| }
 | |
| 
 | |
| #preTitle {
 | |
|     opacity: 0.8;
 | |
|     color: #fffd80;
 | |
| }
 | |
| 
 | |
| /* screen larger than 600px -- desktop */
 | |
| @media screen and (min-width: 601px) {
 | |
|     .tile {
 | |
|         min-height: 500px;
 | |
|     }
 | |
| 
 | |
|     #section1 {
 | |
|         padding-top: 200px;
 | |
|     }
 | |
| 
 | |
|     #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) {
 | |
|     /*background color of collapsed navbar*/
 | |
|     .navbar-nav {
 | |
|         background: #311E25;
 | |
|     }
 | |
| 
 | |
|     .tile {
 | |
|         min-height: 300px;
 | |
|     }
 | |
| 
 | |
|     #section1 {
 | |
|         padding-top: 100px;
 | |
|     }
 | |
| 
 | |
|     #preTitle {
 | |
|         font-size: 15px;
 | |
|     }
 | |
| 
 | |
|     #titleText {
 | |
|         font-size: 30px;
 | |
|     }
 | |
| 
 | |
|     #subTitleText {
 | |
|         font-size: 20px;
 | |
|     }
 | |
| 
 | |
|     #meaningFullSentence {
 | |
|         width: 100%;
 | |
|         font-size: 13px;
 | |
|     }
 | |
| } |