-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
87 lines (87 loc) · 1.97 KB
/
Copy pathindex.css
File metadata and controls
87 lines (87 loc) · 1.97 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
82
83
84
85
86
87
body,html{
background-color: rgb(50,50,50);
width: 100%;
height: 100%;
margin: 0;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
-ms-user-select: none;
}
*{
font-weight: 200;
}
header{
position: absolute;
background-color: rgb(100,100,100);
width: 100%;
height: 60px;
color: white;
font-size: 13px;
display: flex;
align-items: center;
justify-content: center;
}
#text1{
position: absolute;
top: 90px;
left: 220px;
transform: translate(-50%,-50%);
color: white;
font-size: 40px;
}
#btn1{
position: absolute;
top: 215px;
left: 160px;
transform: translate(-50%,-50%);
color: black;
width: 180px;
height: 50px;
border: none;
border-radius: 15px;
background-color: rgb(255, 251, 0);
font-size: 18px;
filter: drop-shadow(0 0 10px rgb(252, 185, 0));
transition: background-color 0.5s ease,
filter 0.5s ease,
transform 0.5s ease;
}
#btn1:hover{
transform: translate(-50%,-100%);
filter: drop-shadow(0 10px 20px rgb(252, 185, 0));
background-color: rgb(252, 185, 0);
}
#btn1:active{
transform: translate(-50%,-90%);
filter: drop-shadow(0 0 20px rgb(252, 164, 0));
background-color: rgb(252, 164, 0);
}
#btn2{
position: absolute;
top: 215px;
left: 400px;
transform: translate(-50%,-50%);
color: black;
width: 250px;
height: 50px;
border: none;
border-radius: 15px;
background-color: rgb(255, 251, 0);
font-size: 18px;
filter: drop-shadow(0 0 10px rgb(255, 251, 0));
transition: background-color 0.5s ease,
filter 0.5s ease,
transform 0.5s ease;
}
#btn2:hover{
transform: translate(-50%,-100%);
filter: drop-shadow(0 0 20px rgb(252, 185, 0));
background-color: rgb(252, 185, 0);
}
#btn2:active{
transform: translate(-50%,-90%);
filter: drop-shadow(0 0 20px rgb(252, 164, 0));
background-color: rgb(252, 164, 0);
}