forked from codemistic/Web-Development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (73 loc) · 1.3 KB
/
style.css
File metadata and controls
80 lines (73 loc) · 1.3 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url('wall.jpg');
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
}
.js_timer{
text-align: center;
}
#timer{
font-weight: bolder;
font-size: x-large;
background: white;
border: 2px solid black;
border-radius: 3px;
color: black;
width: 100px;
height: 30px;
position: relative;
top: 40px;
left: 45.5%;
}
.container{
position: relative;
height: 100vh;
}
.startBtn{
width: 140px;
height: 45px;
border: 2px solid black;
border-radius: 5px;
background-color: darkgoldenrod;
color: darkred;
font-weight: bolder;
font-size: 1.1rem;
padding: 3px;
position: relative;
top: 30px;
left: 600px;
cursor: none;
}
.startBtn:hover{
background-color: darkred;
color: darkgoldenrod;
}
.balloon{
width: 100px;
height: auto;
}
img::selection{
background: transparent;
}
.burst{
width: 50px;
height: auto;
position: absolute;
z-index: 2;
transform: translate(-50%, -50%);
}
.cursor{
position: absolute;
height: 70px;
transform: translate(-50%,-50%);
pointer-events: none;
z-index: 2;
transition: 0.3s transform ease;
transform-origin: 100% 100%;
}