-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (93 loc) · 1.74 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Mukta', sans-serif;
}
body {
display: flex;
height: 100vh;
align-items: center;
justify-content: space-evenly;
}
.logo-mario {
width: 300px;
}
.imagem-mario-luigi {
height: 500px;
}
.caixa-principal {
width: 40%;
}
.video-mario {
position: fixed;
top: 0;
z-index: -1;
width: 100%;
height: 100%;
}
video {
position: fixed;
top: 0;
min-height: 100%;
min-width: 100%;
}
.mascara-video {
height: 100%;
width: 100%;
position: fixed;
top: 0;
background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
}
p {
color: #FFFFFF;
margin-top: 10px;
font-size: 18px;
text-align: justify;
}
button {
height: 40px;
width: 200px;
background: #C51111;
border: none;
border-radius: 4px;
color: #FFFFFF;
margin-top: 20px;
cursor: pointer;
}
.fale-conosco {
background: #FFFFFF;
display: flex;
flex-direction: column;
padding: 20px;
border-radius: 10px;
gap: 20px;
position: fixed;
left: -335px;
transition: left linear 1s;
z-index: 4;
}
input {
height: 40px;
border-radius: 3px;
border: 1px solid gray;
padding-left: 10px;
outline-color: chartreuse;
}
textarea {
height: 250px;
width: 300px;
border-radius: 3px;
border: 1px solid gray;
padding: 10px;
outline-color: chartreuse;
}
.mascara-form {
visibility: hidden;
height: 100vh;
width: 100vw;
position: fixed;
top: 0;
background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
z-index: 3;
}