-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiniciar.css
More file actions
67 lines (60 loc) · 1.24 KB
/
iniciar.css
File metadata and controls
67 lines (60 loc) · 1.24 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
body, html {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
overflow: hidden;
background: #121212;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
position: relative;
}
.start-button {
padding: 20px 40px;
font-size: 24px;
font-weight: bold;
color: white;
background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
border: none;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: transform 0.3s ease, box-shadow 0.3s ease;
z-index: 1;
}
.start-button:hover {
transform: scale(1.05);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}
.background div {
position: absolute;
width: 20px;
height: 20px;
background: rgba(255, 255, 255, 0.2);
animation: move 10s linear infinite;
}
@keyframes move {
to {
transform: translateY(-100vh) rotate(360deg);
}
}
.creditos {
font-family: Arial, sans-serif;
text-decoration: none;
color: #00e1ff;
display: block;
text-align: center;
margin-top: 10px;
}