-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
80 lines (68 loc) · 1.56 KB
/
main.css
File metadata and controls
80 lines (68 loc) · 1.56 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
#navigation{
background-color: black;
}
#whole_card{
margin-top:10px;
margin-left:290px;
box-shadow:0px 0px 50px 0px black;
border:3px solid #d9d9d9;
background-image: url("http://ladyoftheswamps.l.a.pic.centerblog.net/832ad221.gif");
background-repeat:no-repeat;
background-size: cover;
height:650px;
width:500px
}
#start_button{
background-color:#99ffbb;
color:black;
opacity: 0.6;
width:100px;
transition: all 0.5s;
text-decoration: none;
cursor: pointer;
box-shadow: 0px 0px 20px 0px black;
}
#start_button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 1s;
}
#start_button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 1s;
}
#start_button:hover span {
padding-right: 25px;
}
#start_button:hover span:after {
opacity: 1;
right: 0;
}
#start_button:hover {
opacity: 1;
width:420px;
}
.container{
/* justify-content: center; */
margin-left: 26%;
}
#koi_fish{
margin-top:20px;
border-radius:750px;
opacity: 0.8;
-webkit-animation:spin 20s linear infinite;
-moz-animation:spin 20s linear infinite;
animation:spin 20s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(180deg); transform:rotate(360deg); } }
.card-title{
color:white;
font-size:40px;
}