-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (83 loc) · 1.22 KB
/
Copy pathstyle.css
File metadata and controls
100 lines (83 loc) · 1.22 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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f5f5f5;
color: #222;
}
#app {
width: min(1100px, calc(100% - 32px));
margin: 0 auto;
padding: 24px 0 40px;
}
header {
margin-bottom: 24px;
}
nav {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.nav-button {
border: 1px solid #bbb;
background: white;
color: #222;
padding: 10px 16px;
cursor: pointer;
font: inherit;
}
.nav-button.is-active {
background: #222;
color: white;
}
main section {
background: white;
border: 1px solid #ddd;
padding: 24px;
}
.is-hidden {
display: none;
}
img,
iframe {
max-width: 100%;
}
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
border: 1px solid #999;
padding: 10px;
text-align: left;
}
.cajaformulario form {
display: grid;
gap: 10px;
}
input,
select,
button {
padding: 10px;
font: inherit;
}
footer {
margin-top: 24px;
text-align: center;
}
.form-message {
margin: 0;
color: #116611;
font-weight: bold;
}
@media (max-width: 640px) {
#app {
width: min(100% - 20px, 1100px);
}
.nav-button {
width: 100%;
}
}