-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcss_index.css
More file actions
81 lines (81 loc) · 1.69 KB
/
Copy pathcss_index.css
File metadata and controls
81 lines (81 loc) · 1.69 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
@keyframes comein{
0%
{background: rgba(255, 255, 255, 0);
color: rgba(255, 255, 255, 0);
border-radius: 0px 0% 0% 0px/0px 50% 50% 0px;
height: 100vh;
width: 75%;};
100%
{background: white;
border-radius: 0px 65% 65% 0px/0px 50% 50% 0px;
height: 100vh;
width: 75%;};
}
@keyframes rotateimg{
0%{
transform:rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
.comein2{
animation: comein 3s;
background: white;
border-radius: 0px 65% 65% 0px/0px 50% 50% 0px;
height: 100vh;
width: 75%;
position: absolute;
top: 0px;
}
.comein1{
animation: comein 3s;
border-radius: 0px 65% 65% 0px/0px 50% 50% 0px;
background: white;
height: 100vh;
width: 75%;
position: absolute;
top: 0px;
display: none;
}
.comein0{
animation: comein 3s;
border-radius: 0px 65% 65% 0px/0px 50% 50% 0px;
background: white;
height: 100vh;
width: 75%;
position: absolute;
top: 0px;
display: none;
}
body{
background:rgba(16, 98, 206, 0.507);
}
title{
color: aquamarine;
font-size: large;
}
.wel{
color: darkgray;
}
.link{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-style: oblique;
font-size: 2em;
color: rgba(24, 55, 208, 0.292);
}
.buimg:hover,.buimg:active{
animation:rotateimg 2s infinite;
}
.instructions{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
@media (min-width:15em){
.instructions{
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
}
.instructions>a:hover{
text-decoration: solid;
}