Created
December 4, 2019 22:58
-
-
Save codigoconjuan/8441be8cf7ab171871c20e2caae53265 to your computer and use it in GitHub Desktop.
Materiales Primer Proyecto
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
min-height: 100%; | |
} | |
body { | |
margin: 0; | |
padding: 0; | |
font-family: sans-serif; | |
background-image: linear-gradient(-225deg, #A445B2 0%, #D41872 52%, #FF0066 100%); | |
min-height: 100%; | |
padding-bottom: 5rem; | |
} | |
h1, h2 { | |
color: white; | |
padding: 3rem 0; | |
text-align: center; | |
text-transform: uppercase; | |
font-family: 'Staatliches', cursive; | |
letter-spacing: 1px; | |
} | |
.lista-citas .media { | |
border-bottom: 1px solid #e1e1e1; | |
padding-bottom: 3rem; | |
} | |
.lista-citas .media:last-of-type{ | |
border-bottom: 0; | |
} | |
.lista-citas .media-body p { | |
margin:0; | |
} | |
.lista-citas .media-body button { | |
margin-top: 1rem!important; | |
} | |
.lista-citas .media-body span { | |
font-weight: bold; | |
} | |
label { | |
color: white; | |
} | |
input[type="date"], | |
input[type="time"] { | |
height: 38px; | |
padding: 6px 10px; | |
background-color: #fff; | |
border: 1px solid #D1D1D1; | |
border-radius: 4px; | |
box-shadow: none; | |
box-sizing: border-box; | |
} | |
.cita { | |
padding: 2rem; | |
background: white; | |
border-bottom: 1px solid #e1e1e1; | |
color: black; | |
} | |
.cita p { | |
font-weight: bold; | |
margin-bottom: .8rem; | |
} | |
.cita p span { | |
font-weight: normal; | |
} | |
.cita:first-of-type { | |
border-top-left-radius: 1rem; | |
border-top-right-radius: 1rem; | |
} | |
.cita:last-of-type { | |
border-bottom-left-radius: 1rem; | |
border-bottom-right-radius: 1rem; | |
} | |
.button.eliminar, | |
.button.eliminar:hover { | |
background-color: #c10059; | |
color: white; | |
margin-top: 2rem; | |
} | |
.alerta-error { | |
background-color: white; | |
color: red; | |
padding: 1rem; | |
font-size: 2rem; | |
text-transform: uppercase; | |
text-align: center; | |
font-family: 'Staatliches', cursive; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<title>Administración de Pacientes</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"> | |
<link href="https://fonts.googleapis.com/css?family=Staatliches" rel="stylesheet"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment