-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (92 loc) · 2.12 KB
/
Copy pathstyle.css
File metadata and controls
115 lines (92 loc) · 2.12 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
body{
background-color: rgb(157, 156, 238);
}
#botones{
background-color: aqua;
}
/*Se hace uso de un identificador en donde se van a definir atibutos solo para este elemento*/
#intrucciones{
background-color: beige;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: crimson;
font-size: 20px;
}
/*Se hace uso de las clase en donde se mandan a llamar con .(nombre de la clase) y de esta manera en las etiquetas html
se agg la clase de la cual se hara uso*/
.lista{
color: navy;
}
/*Se usan atributos para una imagen*/
.bordes-redondeados-img{
background-color: blueviolet;
width: 200px;
height: 200px;
border-radius: 50%;
border-color: black;
border-style: solid;
}
/*Con font size podemos definir el tamaño de la leta
Con color el color, con font-family la fuente que usaremos*/
.titulos{
font-size: 50px;
color: brown;
font-weight: 400;
font-family: 'Times New Roman', Times, serif;
}
/*Se usan atributos para la img*/
.logo-formulario{
border-width: 1px;
border-radius: 20%;
border-color: rgb(0, 0, 0);
border-style: solid;
height: 40px;
width: 40px;
}
.subtitulos{
color: royalblue;
font-family: Arial, Helvetica, sans-serif;
}
/*Se crea estilo para parrafo de checkbox*/
.casillas-verificacion{
font-size: 13px;
font-family: 'Courier New', Courier, monospace;
color: navy;
}
p{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 20px;
color: aliceblue;
}
.derechos-autor
{
font-size: 22px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: rgb(92, 19, 10);
}
/*Se declaran los mismos estilos para diferentes etiquetas hmtl*/
h1,
h4,
h5
{
color: rgb(73, 21, 21);
}
/*Se usan selectores de atributos para poder dar estilos definidos*/
input[type="password"]
{
margin: 2px;
}
input[type="text"]
{
margin: 2px;
}
/*Declaro algunos estilos a los atributos a href*/
a[href="#"]{
font-weight: bold;
margin: 5px;
padding: auto;
color: green;
font-size: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-style: oblique;
text-decoration: none;
}