webapp
Форк от omaltsev/webapp
72 строки · 1.1 Кб
1video {2object-fit: cover;3width: 100%;4height: 100%;5position: fixed;6z-index: -1;7}
8
9.hero-container {10/* background: url('/images/img-home.jpg') center center/cover no-repeat; */11height: 100vh;12width: 100%;13display: flex;14flex-direction: column;15justify-content: center;16align-items: center;17box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2);18object-fit: contain;19}
20
21.hero-container > h1 {22color: #fff;23font-size: 100px;24margin-top: -100px;25}
26
27.hero-container > p {28margin-top: 8px;29color: #fff;30font-size: 32px;31font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',32'Lucida Sans', Arial, sans-serif;33}
34
35.hero-btns {36margin-top: 32px;37}
38
39.hero-btns .btn {40margin: 6px;41}
42
43.fa-play-circle {44margin-left: 4px;45}
46
47@media screen and (max-width: 960px) {48.hero-container > h1 {49font-size: 70px;50margin-top: -150px;51}52}
53
54@media screen and (max-width: 768px) {55.hero-container > h1 {56font-size: 50px;57margin-top: -100px;58}59
60.hero-container > p {61font-size: 30px;62}63
64.btn-mobile {65display: block;66text-decoration: none;67}68
69.btn {70width: 100%;71}72}
73