form.css 2.66 KB
Newer Older
1 2 3 4 5 6 7
/* el header donde va el logo y el menu  */
html,body{
    background-image: url(imagenes/descarga.svg);

}
/* damos los estilos a todo lo que contiene el body  */
body{
Rebecca Arzamendia committed
8 9 10 11 12 13 14 15 16 17 18
    font-family: 'Quicksand', sans-serif;
    color: white;
    webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    align-items: center;
    height: 150%;}
p{
    font-family: 'Quicksand', sans-serif;
    color: white;
    webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
19
    align-items: center;
Rebecca Arzamendia committed
20 21
    height: 150%;}

22 23 24 25 26 27 28 29 30 31 32 33 34

/* para el logo */
img{
    width: 165px;
    padding: 10px;
}

p.enter{
    text-align: center;
    font-size: 20px;
}
/* para el parrafo */
p:hover{
Rebecca Arzamendia committed
35
    color: white;
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
}

/* para el create o sea para el main */
.create{
    width: 100%;
    max-width: 785px;
    min-width: 320px;
    border-radius: 15px;
    background-color: rgba(11, 49, 110, 0.75);
    padding: 1rem;

}
/* contenedor */
/* para el forrmulario */
.form label{
   display: block;
Angel Zarate committed
52 53
   border: none;
   align-items:center;
Rebecca Arzamendia committed
54
   color:white
55 56 57 58 59 60 61 62 63 64

}

.form input{
    display: block;
    border: none;
    width: 50%;
    align-items:center;
}
.form input[type="email"],.form input[type="text"],.form input[type="number"]{
Rebecca Arzamendia committed
65
   background-color: transparente;
66 67 68
    border-radius: 10px;
    border: 1px solid #000;

Rebecca Arzamendia committed
69 70


71 72 73 74 75 76 77 78 79
}
.form input:hover{
    background-color: wheat;
}



a{
    text-decoration: none;
Rebecca Arzamendia committed
80

81 82 83 84
}
ul{
list-style:none;
font-size:15px;
Rebecca Arzamendia committed
85

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
}

a{
text-decoration:none;
color:black;
background-color: #21211d;
border-radius: 10px;
  color: #FFF;
  padding: 10px;
  margin:15px;
  text-decoration: none;
  cursor: pointer;
  background-image: url(imagenes/descarga.svg);
}
 .form input[type="reset"] , .form input[type="submit"]{
Rebecca Arzamendia committed
101 102 103 104 105 106 107 108 109 110 111 112 113
          text-decoration:none;
          background-color: rgba(11, 49, 110, 0.75);
            background-image: url(imagenes/descarga.svg);
          border-radius: 5px;;
          padding: 10px;
          border-radius: 10px;
          margin:10px;
          text-decoration: none;
          color:#ffff;
          text-align:left;
          cursor: pointer;
          width:80px;
          text-align:center;
114
    }
Angel Zarate committed
115
/*hola mundo*/
116 117

input#ruby,input#python,input#c,input#javascript,input#java{
Angel Zarate committed
118
width:30px;
119 120 121

}
input#experiencia_laboral,input#notebook,input#universidad{
Angel Zarate committed
122
width:500px;
123 124
}

Angel Zarate committed
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
/* para el alert  */
.alert {
 padding: 10px;
 background-color: background-color: #2196F3;
 color: white;
}
.alert.info {background-color: #2196F3;}
.alert.error {background-color:  #ff0000;}
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.closebtn:hover {
  color: black;
}
Rebecca Arzamendia committed
146
Contraer