forked from CodeYourFuture/Module-Onboarding
-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathwireframe1.css
More file actions
65 lines (56 loc) · 977 Bytes
/
wireframe1.css
File metadata and controls
65 lines (56 loc) · 977 Bytes
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
/* Reset básico */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
max-width: 900px;
margin: 0 auto;
padding: 20px;
}
/* Header */
header {
text-align: center;
margin-bottom: 40px;
}
header h1 {
margin-bottom: 10px;
}
/* Secciones principales */
section {
margin-bottom: 40px;
}
/* Artículos estilo wireframe */
article {
border: 2px solid #cccccc;
padding: 20px;
margin-bottom: 20px;
}
/* Botón estilo wireframe */
button {
margin-top: 20px;
padding: 10px 20px;
border: 2px solid #ccc;
background: #f5f5f5;
cursor: pointer;
}
/* Grid inferior con dos artículos */
main section:nth-of-type(2) {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
/* Footer */
footer {
text-align: center;
padding: 20px;
border-top: 2px solid #ccc;
}
/* Responsive para móviles */
@media (max-width: 700px) {
main section:nth-of-type(2) {
grid-template-columns: 1fr;
}
}