106 lines
3.9 KiB
CSS
Executable File
106 lines
3.9 KiB
CSS
Executable File
@import url(otrosEstilos.css);
|
|
h2 { color: crimson; }
|
|
p { color: deeppink }
|
|
|
|
/* SELECTOR UNIVERSAL <-- Aplica una caracteristica a TODOS los elementos de un html */
|
|
/** { font-family:arial; } */
|
|
|
|
/* SELECTOR DE TIPO O ETIQUETA <-- Modifica etiquetas especificas del documento HTML */
|
|
span { color: darkgreen; }
|
|
|
|
/* SELECTOR CLASS <-- Permiten crear una clase personalizada (class subrayado ejm.).A su vez permite limitar la aplicación de esta clase a un tipo de elemento */
|
|
span.subrayado { text-decoration: underline; }
|
|
|
|
/* SELECTOR ID <-- Similar al selector Class, se define con un signo #, y se aplica con id="" */
|
|
h3#mayusculas { text-transform: uppercase; }
|
|
|
|
/* SELECTOR PSEUDO-CLASS */
|
|
a:link { color: darkred; } /* Link NO visitado */
|
|
a:visited { color: aquamarine; } /* Link Visitado */
|
|
a:hover { font-weight: bold; text-decoration: none; } /* Cursor sobre el link */
|
|
a:active { color:brown; } /* Link presionado (al hacer click) */
|
|
|
|
/* SELECTOR DE ATRIBUTO */
|
|
img[title]{ width:200px; height:auto; }/* <-- Aplica sobre todos los elementos con el atributo especifico*/
|
|
img[alt="mineral"]{ width: 400px; height: auto;}/* <-- Y también piede aplicar a todos los elementos con el atributo especifico y con un valor especifico del mismo atributo */
|
|
img[alt="fuente"]{ width: 650px; height: auto;}
|
|
|
|
/* COLORES CSS
|
|
|
|
p{ color:red; } <--- Valores por nombre del color
|
|
p{ color: #FF0000; } <--- Valores en notación hexadecimal
|
|
p{ color: #F00; } <-- Valores en notación hexadecimal abreviada
|
|
p{ color: rgb(255, 0, 0); } <-- Valores en notación RGB
|
|
*/
|
|
/* PAGINAS DE AYUDA PARA SELECCIONAR COLORES */
|
|
/* websafecolors.info/color-chart */
|
|
/* www.colors.commutercreative.com/grid/ */
|
|
/* https://color.adobe.com/es/create/color-wheel */
|
|
/* https://css-tricks.com/snippets/css/named-colors-and-hex-equivalents/ */
|
|
|
|
/* FUENTE */
|
|
body {
|
|
/*font-family: arial,hevetica,sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 300; /* 0 = normal, 1000 = bold *//*
|
|
font-style: italic;
|
|
font-variant: small-caps;
|
|
line-height: 1.5; *//* tb puede ser 150% o 50px*/
|
|
/* Shorthand o metodo abreviado (en el sgte orden) */
|
|
font: italic small-caps bold 20px/150% aria, helvetica, sans-serif;
|
|
}
|
|
|
|
/* TEXTO */
|
|
p {
|
|
text-align: justify; /* left, center, right, justify */
|
|
text-indent: 20px; /* número o porcentaje */
|
|
text-transform: capitalize; /* lowercase, uppercase */
|
|
text-decoration: overline; /* line-through, underline, overline, none */
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
img {
|
|
vertical-align: middle;/* top, middle, bottom, sup, sub....*/
|
|
}
|
|
|
|
h2 {
|
|
letter-spacing: 15px; /* */
|
|
word-spacing: 30px;
|
|
}
|
|
|
|
/* FONDO */
|
|
body { /* puede ser en cualquier parte del documento */
|
|
/*background-color: peachpuff;*/
|
|
/* background-image: url(../img/ojo.jpg);
|
|
background-repeat: no-repeat; /* repeat, repeat-x*, repeat-y */
|
|
/* background-position: 20% 50%; /* bottom, center, left, right, top, center top, 100px 200px */
|
|
/* background-attachment: fixed; /* como se va a mover segun el contenido{ scroll, fixed } */
|
|
}
|
|
|
|
/* CUADRO */
|
|
#cuadro {
|
|
width: 400px; /* Define el ancho del elemento*/
|
|
height: 200px; /* Define el alto del elemento*/
|
|
overflow: auto; /* scroll, hidden */
|
|
background: lime;
|
|
|
|
/* border-width: 4px; */
|
|
/* border-style: solid; *//* dotted, dash, double, groove, ridge, outset, inset */
|
|
/* border-color: darkblue; */
|
|
border: 4px dashed darkblue; /* border-bottom, border-left..... */
|
|
|
|
/* padding-top: 25px;
|
|
padding-bottom: 50px;
|
|
padding-left: 50px;
|
|
padding-right: 50px;*/
|
|
padding: 25px 50px 50px 50px; /* desde arriba y en sentido horario*/
|
|
|
|
/* margin-top: 80px;
|
|
margin-right: 0px;
|
|
margin-bottom: 0px;
|
|
margin-left: 100px;*/
|
|
margin: 20px 0px 0px 100px;
|
|
} |