-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregras.css
More file actions
135 lines (118 loc) · 2.47 KB
/
Copy pathregras.css
File metadata and controls
135 lines (118 loc) · 2.47 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* Estilos Gerais */
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(to right, rgb(2, 16, 45), rgb(44, 60, 96));
color: white;
text-align: center;
background-attachment: fixed; /* Efeito Parallax */
}
/* Cabeçalho */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: rgba(0, 0, 0, 0.7);
}
header a img {
height: 50px;
width: 50px;
border-radius: 50%;
transition: transform 0.3s ease;
}
header a img:hover {
transform: scale(1.1);
}
nav {
display: flex;
gap: 15px;
}
nav a {
color: white;
text-decoration: none;
font-weight: bold;
font-size: 1.2em;
position: relative;
padding-bottom: 5px;
transition: color 0.3s ease, transform 0.2s ease;
}
nav a:hover {
color: #007bff;
transform: translateY(-3px);
}
nav a::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background-color: #007bff;
bottom: 0;
left: 0;
transform: scaleX(0);
transition: transform 0.3s ease;
}
nav a:hover::after {
transform: scaleX(1);
}
/* Hero Section */
.hero {
text-align: center;
padding: 50px 20px;
background-color: rgba(0, 0, 0, 0.5);
animation: fadeIn 1s ease-out forwards;
}
.hero h1 {
font-size: 3em;
margin-bottom: 10px;
letter-spacing: 3px;
text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
animation-delay: 0.5s;
}
.hero p {
font-size: 1.2em;
margin-bottom: 20px;
animation-delay: 1s;
}
/* Regras */
.content {
padding: 30px 20px;
}
.rule-item {
background-color: rgba(0, 0, 0, 0.6);
margin: 20px auto;
padding: 20px;
border-radius: 10px;
width: 80%;
max-width: 900px;
animation: fadeIn 1s ease-out forwards;
}
.rule-item h2 {
font-size: 2em;
margin-bottom: 10px;
color: #ffcc00;
text-align: left;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}
.rule-item p {
font-size: 1.2em;
text-align: left;
line-height: 1.5;
color: #e0e0e0;
}
.rule-item ul {
list-style-type: disc;
padding-left: 20px;
font-size: 1.2em;
}
/* Rodapé */
footer {
position: fixed;
bottom: 0;
width: 100%;
padding: 10px;
background-color: rgba(0, 0, 0, 0.7);
text-align: center;
color: white;
font-size: 1em;
}