-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
96 lines (76 loc) · 1.4 KB
/
popup.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
html{
min-height: 380px;
width: 480px;
margin: 0px;
padding: 0px;
}
.main{
height: 350px;
width:450px;
border: 1px solid black;
border-radius: 20px;
box-shadow:5px 10px rgb(85, 83, 83) ;
background-color: rgb(245, 228, 171);
}
p{
text-align: center;
font-size: 30px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.eyecon{
display: flex;
}
img{
position: absolute;
height: 80px;
width: 150px;
top:80px;
}
#left{
padding-right: 80px;
clear: both;
transform: rotatey(-180deg);
animation: eyes 1s 1 ease-in;
animation-delay: 1s;
}
#right{
clear: both;
padding-left: 230px;
animation: eyes 1s 1 ease-in;
}
#time{
align-items: center;
}
#btnLaunch{
position: absolute;
cursor: pointer;
background-color: rgba(247, 191, 107, 0.7);
text-align: center;
font-size: 28px;
margin-left: 155px;
padding: 10px;
width: 120px;
box-shadow: 5px 5px rgb(128, 105, 0);
text-decoration: none;
display: block;
color: black;
border-radius: 10px;
}
#btnLaunch:active{
transform:translateY(10px) ;
box-shadow: 0px 0px;
}
#btnLaunch:hover{
background-color: rgb(252, 173, 54);
}
@keyframes eyes{
0%{
height:80px;
}
75%{
height: 90px;
}
100%{
height: 80px;
}
}