-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (73 loc) · 1.78 KB
/
Copy pathstyle.css
File metadata and controls
88 lines (73 loc) · 1.78 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
/* Reset básico para padronizar os estilos entre navegadores */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Variáveis CSS para reutilização de cores e tamanhos */
:root {
--primary: #0057ff;
--radius: 6px;
}
/* Estilos globais para todo o corpo da página */
body {
font-family: Arial, sans-serif;
background: #f9f9f9;
color: #333;
line-height: 1.6;
}
.subi {
text-align: center;
}
/* Container principal com largura máxima e centralizado */
.container {
max-width: 800px;
margin: 40px auto;
padding: 24px;
background: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/* Cabeçalho com fundo azul e texto branco */
.header {
background-color: var(--primary);
color: #fff;
padding: 20px;
text-align: center;
}
/* Estilo do título principal */
.title {
margin: 0;
}
.card {
width: 300px;
height: 700px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.2s ease, box-shadow 0.2s ease;
font-family: Arial, sans-serif;
padding: 30px;
display: inline-block;
margin: 35px;
max-width: 300px;
} .card :hover {
background-color: #7c7c7c;
}
/* Estilização do botão com cor e borda arredondada */
.button {
background: var(--primary);
color: #fff;
padding: 10px 20px;
border: none;
border-radius: var(--radius);
cursor: pointer;
}
/* Responsividade para telas pequenas */
@media (max-width: 600px) {
.container {
padding: 12px;
}
}