-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (87 loc) · 1.54 KB
/
style.css
File metadata and controls
88 lines (87 loc) · 1.54 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
@keyframes fade{
0%{
display: none;
opacity: 0;
}
1%{
display:unset;
opacity: 0.01;
}
100%{
opacity: 1;
}
}
html {
height: 100%;
width: 100%;
margin: 0% left;
padding-left: 0%;
background-image: url('https://idp.tasd7.net/adfs/portal/illustration/illustration.jpg');
}
#bar{
position: absolute;
top: 0px;
right: 0px;
width: 100%;
height: 4%;
background: linear-gradient(90deg, #ff00f07e, #0050ff7e);
backdrop-filter: blur(3px);
border-radius: 0px 0px 15px 15px;
z-index: 100;
box-shadow: 0px 1px 20px;
}
.barbtn{
height: 100%;
border: none;
}
button{
border-radius: 15px;
transition: all 250ms
}
button:hover{
opacity: 0.5;
}
.winbox {
background: linear-gradient(90deg, #ff00f07e, #0050ff7e);
backdrop-filter: blur(3px);
border-radius: 15px 15px 0 0;
box-shadow: 0px 1px 20px;
}
.winbox.min{
position: absolute;
top:5px;
}
.hidden{
animation-name: fade;
animation-direction: reverse;
animation-duration: 200ms;
animation-fill-mode: forwards;
}
*{
animation-name: fade;
animation-duration: 200ms;
}
#menu{
position: absolute;
top: 5%;
left: 0px;
width: 15%;
height: 15%;
background: linear-gradient(90deg, #ff00f07e, #0050ff7e);
backdrop-filter: blur(3px);
border-radius: 15px 15px 15px 15px;
z-index: 100;
overflow: scroll;
margin: left 10%;
box-shadow: 0px 1px 20px;
}
.mitem{
width: 100%;
background-color: #00000000;
border-radius: 0px;
border-bottom: line;
border-top: line;
border-left: none;
border-right: none;
text-align: left;
}