-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathframe.css
68 lines (65 loc) · 1.04 KB
/
frame.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
iframe{
border:none;
}
#home{
width:100%;
height:100%;
}
#menu{
width:120px;
height:85%;
position:fixed;
top:50px;
left:-120px;
visibility:hidden;
transition:0.5s;
background:rgba(0,0,0,0.4);
box-shadow:2px 2px 9px black;
border-top-right-radius:20px;
border-bottom-right-radius:20px;
}
#menu:target,#course:target{
left:0;
visibility: visible;
}
#course{
width:100px;
height:85%;
position:fixed;
top:50px;
left:-100px;
visibility:hidden;
transition:0.5s;
background:rgba(0,0,0,0.4);
box-shadow:2px 2px 9px black;
border-top-right-radius:20px;
border-bottom-right-radius:20px;
}
#container{
visibility: hidden;
width:100%;
height:100%;
background:rgba(150,150,150,0.9);
position:fixed;
top:-100%;
left:0
transition:1s;
}
#sign{
width:90%;
height:70%;
border-radius:20px;
margin:80px 15px 200px 15px;
display:flex;
justify-content: center;
align-items:center;
}
#container:target{
transition:1s;
visibility: visible;
top:0;
}
#log{
font-size:15px;
color:white;
}