-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (84 loc) · 2.05 KB
/
Copy pathstyle.css
File metadata and controls
95 lines (84 loc) · 2.05 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
88
89
90
91
92
93
94
95
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #172446;
font-family: 'Indie Flower', cursive;
overflow: hidden;
}
.container {
text-align: center;
background-color: #3a3a3a;
padding: 40px;
border-radius: 20px;
border: 3px solid #00b5fc;
box-shadow: 0 1px 30px rgba(0, 205, 246, 0.756);
max-width: 400px;
width: 90%;
}
.heder_text{
font-size: 36px;
color: #f7f7f7;
text-shadow: 2px 2px 4px rgb(34, 177, 193);
font-family: 'Times New Roman', Times, serif;
}
.buttonss {
margin-top: 20px;
display: flex;
justify-content: center;
gap: 15px;
}
.btn {
padding: 12px 24px;
font-size: 20px;
border: 2px solid #00b5fc;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
background-color: #f4eced;
color: #2d2d2d;
font-family: 'Indie Flower', cursive;
box-shadow: 0 4px 10px rgba(0, 109, 211, 0.468);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.btn:hover {
background-color: white;
color: #00b5fc;
transform: translateY(-2px);
}
#noButton {
background-color: #2c2a32;
border-color: #00b5fc;
color: #f7f7f7;
}
#noButton:hover {
background-color: white;
color: #00b5fc;
}
@keyframes wiggle {
0% { transform: rotate(0deg); }
25% { transform: rotate(-5deg); }
50% { transform: rotate(5deg); }
75% { transform: rotate(-5deg); }
100% { transform: rotate(0deg); }
}
.wiggle {
animation: wiggle 0.5s ease-in-out;
}
@keyframes heartFade {
0% { opacity: 1; transform: scale(1); }
100% { opacity: 0; transform: scale(1.5); }
}
.heart {
position: absolute;
width: 20px;
height: 20px;
background-color: transparent;
transform: translate(-50%, -50%);
animation: heartFade 1s ease-out forwards;
background-color: #ff0000;
border-radius: 50%;
}