App.css 2.26 KB
Newer Older
1 2 3 4 5
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Montserrat', sans-serif; */
6 7
}

8 9 10
h1 {
  padding: 0;
  margin: 0;
11 12
}

13 14 15
h3 {
  padding: 0;
  margin: 0;  
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
p {
  padding: 0;
  margin: 0;
}
.father-container{
  width: 98.7vw;
  height: 200vh;
}
/* Section Del Curriculum */
#curriculum {
  height: 100vh;
}

.curriculum-container {
  width: 100%;
  height: 100%;
}

.nameImage-container {
  width: 100%;
  height: 15%;
  background-color: #303846;
  display: flex;

  color: aliceblue;
}

.mainPersonalInfo-Container {
  width: 90%;
  height: 100%;
}

.name {
  width: 70%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mini-info-Container {
  width: 80%;
  height: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mini-info-Container div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mini-info-Container div div {
  background-color: white;
  border-radius: 15px;
    margin-right: 3px;
}

.mini-info-Container div div img {
  margin-right: 5px;
  margin: 2px;
}

.image-container {
  width: 10%;
  height: 100%;
}


.image-container img {
  width: 100%;
  height: 100%;
}

.container-col {
  margin: 2% 0 2% 0;
96
  display: flex;
97 98 99 100 101 102 103 104 105
  width: 100%;
  height: 79%;
}

.left-column {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: center;
106
  align-items: center;
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
  border-right: 1px solid #dfd7d7;
}

.left-column div {
  width: 95%;
}

.formacion-container {
  border-top: 1px solid #dfd7d7;  
}

.cursos-container {
  border-top: 1px solid #dfd7d7;
}
/* Columna Derecha */

.right-column {
  width: 30%;
  height: 100%;
  display: flex;
127
  justify-content: center;
128 129 130 131 132
  align-items: center;
}

.competencias-container {
  border-top: 1px solid #dfd7d7 ;
133 134
}

135 136 137 138
.barraEntera {
  width: 90%;
  height: 5%;
  background-color: #EAEBEC;
139 140
}

141 142 143 144
.barraMedia {
  width: 60%;
  height: 100%;
  background-color: #303846;
145
}
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164

.barraAlta {
  width: 80%;
  height: 100%;
  background-color: #303846;
}

.barraBaja {
  width: 40%;
  height: 100%;
  background-color: #303846;
}

.colorcito {
  color: #888888;
}

.negrita {
  font-weight: bold;
Nahuel Mereles Rodriguez committed
165 166 167 168 169 170 171 172 173 174 175
}

.textForm-container {
  width: 90%;
}

.button-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #ced4da;
176
}