-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (53 loc) · 1014 Bytes
/
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
* {
margin: 0;
padding: 0;
user-select: none;
box-sizing: border-box;
}
button {
outline: none;
}
.demo {
height: 100vh;
width: 100%;
}
.demo model-viewer {
width: 100%;
height: 100%;
/* text-align: center; */
}
.btn-container {
position: absolute;
bottom: 50px;
width: 100%;
text-align: center;
overflow: hidden;
opacity: 1;
visibility: visible;
transition: 1s;
/* display: flex; */
/* justify-content: center; */
}
.demo .btn-container button {
border: none;
background: #edda73;
border-radius: 15px;
border-color: transparent;
height: 40px;
width: 150px;
margin: 5px 15px;
cursor: pointer;
font-weight: bold;
font-size: 20px;
outline: none;
flex-wrap: wrap;
}
@media screen and (min-width: 300px) and (max-width: 800px) {
.btn-container {
display: flex;
flex-direction: column;
position: absolute;
top: 50%;
flex-wrap: wrap;
}
}