46 lines
		
	
	
		
			786 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			786 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| @font-face {
 | |
|     font-family: "Cinzel";
 | |
|     src: url(assets/cinzel/Cinzel/Cinzel-Regular.ttf) format("truetype");
 | |
| }
 | |
| 
 | |
| .navbar-brand {
 | |
|     font-family: "Cinzel";
 | |
| }
 | |
| 
 | |
| body:before {
 | |
|     content: ' ';
 | |
|     display: block;
 | |
|     position: absolute;
 | |
|     left: 0;
 | |
|     top: 0;
 | |
|     width: 100%;
 | |
|     height: 100%;
 | |
|     opacity: 0.1;
 | |
|     background-image: url("assets/logo.svg");
 | |
|     background-repeat: no-repeat;
 | |
|     background-position: 0 50%;
 | |
|     background-size: 100% auto;
 | |
|     z-index: -1;
 | |
| }
 | |
| 
 | |
| a {
 | |
|     text-decoration: none;
 | |
| }
 | |
| 
 | |
| #gameDemoCarousel {
 | |
|     max-width: 1153px;
 | |
| }
 | |
| 
 | |
| .carousel-caption {
 | |
|     position: relative;
 | |
|     left: 0;
 | |
|     top: 0;
 | |
|     width: 100%;
 | |
|     height: 100%;
 | |
|     min-height: 64px;
 | |
|     --bs-bg-opacity: 0.5;
 | |
| }
 | |
| .carousel-indicators button {
 | |
|     background-color: #fff !important;
 | |
| }
 |