digital-theory/css/1-2-main_title.css

31 lines
447 B
CSS
Raw Normal View History

2023-04-27 16:43:02 +02:00
/**
css JS and html
made by B. Lemoine - cipherbliss.com
04 2023
*/
2023-04-24 18:47:52 +02:00
/******** section 1 *********/
#main_title_container {
text-align: center;
width: 100vw;
}
#main_title {
2023-04-27 17:04:28 +02:00
background: url("/img/sesame.png") no-repeat;
2023-04-24 18:47:52 +02:00
background-size: contain;
2023-04-27 17:04:28 +02:00
box-sizing: border-box;
2023-04-24 18:47:52 +02:00
2023-04-27 17:04:28 +02:00
height: 35vh;
margin: 0 auto;
max-width: 1200px;
2023-04-24 18:47:52 +02:00
position: relative;
top: 4rem;
width: 95vw;
}
2023-04-27 17:04:28 +02:00
#main_title_container h2 {
2023-05-11 15:16:43 +02:00
margin-top: 5vh;
2023-04-24 18:47:52 +02:00
}