-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (108 loc) · 2.07 KB
/
style.css
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
:root {
box-sizing: border-box;
margin: 0;
padding: 0;
}
@font-face {
font-family: 'Street';
src: url('font/street.otf');
}
body {
background-image: url('img/fondo2.jpg');
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
font-family: 'Street', sans-serif;
}
h1 {
color: crimson;
font-size: 46px;
text-align: center;
}
h2 {
color: crimson;
font-size: 28px;
text-align: center;
}
/* ==========================================================================
ESTILOS DE LA TABLA
========================================================================== */
table {
width: 600px;
height: 800px;
border: 10px outset rgb(237, 175, 5);
border-radius: 10px;
background-color: black;
text-align: center;
margin: auto;
}
td {
width: 40px;
height: 45px;
border: 2px solid grey;
border-radius: 10px;
font-size: 18px;
font-weight: bold;
color: darkorange;
text-align: center;
vertical-align: middle;
}
#cabecera {
background-image: url('img/fondocabecera.jpg');
background-size: cover;
color: whitesmoke;
font-size: 40px;
opacity: 0.5;
margin: 0 auto;
}
/* ==========================================================================
ESTILOS DEL FORMULARIO
========================================================================== */
form {
width: 600px;
height: 1100px;
border: 10px outset rgb(237, 175, 5);
border-radius: 10px;
background-color: black;
color: white;
font-family: Verdana, sans-serif;
font-size: 16px;
margin: auto;
}
fieldset {
border: 1px solid white;
padding: 10px;
margin: 20px 5px 20px 5px;
}
legend {
font-size: 14px;
color: rgb(237, 175, 5);
margin: 5px;
}
label {
display: block;
margin-bottom: 3px;
}
label[for='personaje'] {
display: inline;
}
input[type='radio'] {
float: left;
}
textarea {
width: 560px;
height: 100px;
}
input[type='submit'],
input[type='reset'] {
border: 1px solid crimson;
background-color: crimson;
font-family: 'Street', sans-serif;
font-size: 18px;
color: white;
width: 200px;
height: 50px;
border-radius: 5px;
margin-left: 65px;
margin-bottom: 10px;
}