-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
101 lines (90 loc) · 1.63 KB
/
style.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
97
98
99
100
101
body {
height: 100vh;
width: 100%;
cursor: pointer;
background: linear-gradient(45deg, #ff00cc, #00ffcc, #cc00ff, #ff00cc);
background-size: 400% 400%;
animation: gradientAnimation 15s infinite;
overflow-x: hidden;
background-attachment: fixed;
}
@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.game_button {
opacity: 0;
transform: translateY(50px);
transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
button{
background-color: #000000;
border: 1px solid #555555;
color: #ffffff;
border-radius: 5px;
padding: 10px;
font-size: 16px;
cursor: pointer;
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
transition: transform 0.5s;
}
button:hover {
transform: scale(1.1);
background-color: #555555;
border: 1px solid #ffffff;
color: #ffffff;
box-shadow: 4px 4px 10px rgba(250, 250, 250, 0.5);
}
hr{
border: 1px solid #ffffff;
}
input{
background-color: #000000;
border: 1px solid #ffffff;
color: #ffffff;
border-radius: 5px;
padding: 10px;
font-size: 16px;
cursor: pointer;
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
transition: transform 0.5s;
}
h1{
color: #ffffff;
font-size: 36px;
font-weight: bold;
/*margin-top: 50px;*/
}
.hiden {
display: none;
}
.hidden {
display: none;
}
.fit{
width: fit-content;
left: 0;
}
.navebar{
top: 0;
position: fixed;
width: 100%;
overflow-x: hidden;
}