-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfirstPage.css
65 lines (57 loc) · 1.33 KB
/
firstPage.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
body{
padding: 2rem;
width: 100%;
min-height: 100vh;
display: flex;
/* background-image: linear-gradient(to right bottom, #cffafe, #22d3ee); */
/* background-image: linear-gradient(to right bottom, #016c8b, #003769); */
background-image: url('Pages/Assets/bg.gif');
background-size: cover;
}
body.hovered {
/* background-image: linear-gradient(to left bottom, #fea0ff, #dac9fe); */
background-image: url('Pages/Assets/wall6.gif');
background-position: 0%;
background-size: auto;
}
.container{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
max-width: 600px;
margin-inline: auto;
filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.2));
}
.btn{
position: absolute;
top: calc(100% - 10rem);
min-width: 120px;
padding: 0.75rem 1rem;
font-size: 1.25rem;
outline: none;
border: none;
background-color: #455566;
border-radius: 5px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: 0.3s;
color: #fff;
}
.btn:hover span {
display:none
}
.btn:hover:before {
content:"Hiiiii Cutieee \1F49E ";
}
.watermark {
opacity: 0.5;
color: rgb(238, 203, 203);
position: fixed;
top: 95%;
left: 47%;
}
a{
text-decoration: none;
color: rgb(238, 203, 203);
}