-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (104 loc) · 2.03 KB
/
style.css
File metadata and controls
125 lines (104 loc) · 2.03 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
table {
border-collapse: collapse;
}
th,
td {
padding: 10px;
}
th {
background-color: #FCE700;
border-bottom: solid 5px #ea047e;
}
tr:nth-child(even) {
background-color: #ddd;
}
tr:hover {
background-color: #FCE700;
}
body {
background-image: linear-gradient(to right, #00f5ff 0%, #FCE700 100%);
}
p {
color: #ea047e;
font-family: fantasy;
font-size: 20px;
font-weight: normal;
text-align: center;
}
th {
color: #9900fd;
font-family: Georgia;
font-size: 20px;
font-weight: bold;
text-align: center;
}
td {
color: gray;
font-family: cursive;
font-size: 15px;
font-weight: bold;
text-align: center;
}
header {
color:#ea047e;
font-style: cursive;
font-size: 40px;
font-weight: normal;
text-align: center;
}
h1 {
color: #540375;
font-family: cursive;
font-size: 15px;
font-weight: normal;
text-align: center;
}
ul {
color: #a31acb;
font-family: cursive;
font-size: 20px;
font-weight: normal;
text-align: center
}
h3 {
color: #f900bf;
font-family: cursive;
font-size: 30px;
font-weight: normal;
text-align: center
}
label {
color: #10a19d;
font-family: cursive;
font-size: 10px;
font-weight: normal;
text-align: center
}
div {
color: #f900bf;
font-family: cursive;
font-size: 60px;
font-weight: normal;
text-align: center
}
.btn-validar {
border: 10px solid #540375
}
.contenedor{
width: 90%;
max-width: 400px;
padding: 40px 20px;
margin: auto;
display: flex;
flex-direction: column;/*flex para centrar pero lo centramos en columna, una debajo de la otra*/
align-items: center;
background-image: linear-gradient(to right, #00f5ff 0%, #f5ea5a 100%);
border-radius: 15px;
margin-bottom: 5px;
border-radius : #10a19d;
}