-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.scss
More file actions
74 lines (74 loc) · 1.62 KB
/
app.component.scss
File metadata and controls
74 lines (74 loc) · 1.62 KB
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
.router-wrapper {
width: 100vw;
}
.animatable{
position: relative;
width: 100vw;
height: calc(100% - 47px);
perspective: 1200px;
transform-style: preserve-3d;
}
button.skip-to-main {
transform: translateY(-150%);
transition: 0.5s transform ease-in;
background-color: rgb(var(--color-main));
color: rgb(var(--color-text));
padding: 10px;
border:none;
outline:none;
border-radius: 0px 0px 10px 10px;
left: 10px;
height: 30px;
text-decoration: none;
position: absolute;
}
button.skip-to-main:focus {
transform: translateY(0%);
// top: 0%;
}
#chatPopup {
position: absolute;
bottom: 50px;
right: 50px;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: rgb(var(--color-main));
color: rgb(var(--color-text));
font-size: 30px;
display: flex;
justify-content: space-around;
align-items: center;
z-index: 10000;
transition: all 0.5s ease-in-out;
}
.fixedDebugBar{
z-index: 100000;
position: fixed;
bottom:0px;
left:0px;
width: fit-content;
padding:10px;
border-top-right-radius: 20px;
box-shadow: 10px -10px 20px 5px rgba(var(--color-main),0.2);
height:30px;
background: rgb(var(--color-tertiary));
color:rgb(var(--color-main))
}
#changer{
position: fixed;
z-index: 9999999;
top:0px;
overflow: hidden;
width: 100vw;
height:0vh;
background: linear-gradient(145deg, rgb(var(--color-tertiary-gr1)), rgb(var(--color-tertiary)));
font-size: 70px;
color:rgb(var(--color-text));
font-family: var(--font-main);
border-bottom-left-radius: 100px;
border-bottom-left-radius: 100px;
display: flex;
justify-content: center;
align-items: center;
}