-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
executable file
·57 lines (57 loc) · 1.15 KB
/
index.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
body {
background-color:cornsilk;
z-index: 10;
position: relative;
text-align: center;
}
.button{
color: rgb(39, 39, 39);
background-color: cornsilk;
border-style: solid;
border-color: rgb(39, 39, 39);
border-width: 5px;
width: 200px;
height: 100px;
min-height: 30px;
font-size: 28px;
transition-duration: 0.3s;
position: relative;
margin-top: 20px;
}
.button:hover,.in:hover{
background-color: rgb(39, 39, 39);
color: cornsilk;
}
#cover{
position: initial;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(39, 39, 39, 0);
z-index: 1;
transition-duration: 0.5s;
}
#toloadin,#author{
height: 40%;
width:60%;
position: fixed;
left: 20%;
top: -100%;
border-radius: 5%;
padding: 10px;
background-color: rgb(248, 255, 153);
z-index: 200;
box-shadow: rgb(39, 39, 39) 5px 5px 5px;
transition-duration: 0.5s;
text-align: center;
}
#tanchuin{
height: 40%;
width: 80%;
}
.in{
width: 150px;
height: 80px;
background-color:rgb(248, 255, 153)
}