Skip to content

Commit

Permalink
Fixed css errors (#21)
Browse files Browse the repository at this point in the history
Fixed css errors
  • Loading branch information
gsondev authored May 7, 2023
2 parents 8eaca15 + c961c79 commit 9a1ff1e
Show file tree
Hide file tree
Showing 3 changed files with 114 additions and 84 deletions.
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sonar.javascript.lcov.reportPaths=./coverage/lcov.info
sonar.inclusions=src/**/*

# Excluded files
sonar.exclusions=src/*,src/**/*.{css, scss, sass},src/app/**/*,src/assets/**/*,src/routes/**/*
sonar.exclusions=src/*,src/app/**/*,src/assets/**/*,src/routes/**/*

# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=frabricafrontend
Expand Down
37 changes: 33 additions & 4 deletions src/views/cancenlacionCurso/CancelacionCurso.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,19 @@
--Rojo: #ef434d;
--Naranja: #f9a12c;
}

.body_cancelacion {
box-sizing: border-box;
margin: 0;
padding: 0;
overflow: hidden;
}

h2 {
color: var(--Verde);
font-weight: 400;
}

.bannerCancelacion {
width: 100%;
height: 100vh;
Expand All @@ -43,11 +46,13 @@ h2 {
margin-left: 18%;
margin-right: 18%;
}

.logo {
width: 70px;
cursor: pointer;
position: relative;
}

.navbar_cancelacion .uni_name_link {
text-decoration: none;
font-size: x-large;
Expand All @@ -66,13 +71,15 @@ h2 {
color: #43ba5e;
font-weight: 400;
}

.navbar_cancelacion ul li a {
text-decoration: none;
color: #fff;
/* color: #fff; */
text-transform: uppercase;
color: var(--Verde);
font-weight: 400;
}

.navbar_cancelacion ul li a:hover {
color: white;
background: var(--Verde-azul-claro);
Expand All @@ -88,6 +95,7 @@ h2 {
cursor: pointer;
font-size: 16px;
}

.secondary_nav {
background-color: #6da243;
height: 7%;
Expand All @@ -103,30 +111,36 @@ h2 {
margin-left: 18%;
margin-right: 18%;
}

.secondary_nav div {
width: 25%;

display: flex;
align-items: center;
justify-content: center;
}

.secondary_nav h4 {
width: 50%;
color: white;
text-align: center;
}

.secondary_nav .first_e {
cursor: pointer;
background-color: var(--Verde-amarillo);
}

.secondary_nav .second_e {
cursor: pointer;
background-color: var(--Verde-azul);
}

.secondary_nav .third_e {
cursor: pointer;
background-color: var(--Verde-azul-oscuro);
}

.secondary_nav .forth_e {
cursor: pointer;
background-color: var(--Verde-oscuro);
Expand All @@ -149,6 +163,7 @@ h2 {
margin-left: 18%;
margin-right: 18%;
}

.info .students_links {
padding: 10px 0 10px 0;
width: 33%;
Expand All @@ -160,6 +175,7 @@ h2 {
background-color: var(--Rojo);
width: 34%;
}

.info .more_info {
padding: 10px 0 10px 0;
background-color: var(--Azul);
Expand Down Expand Up @@ -192,24 +208,27 @@ h2 {
height: 40%;
padding-top: 1%;
}

.main_wrapper_form_cursos .left_menu h3 {
width: 80%;
overflow: visible;
margin: 0 auto 0 auto;
color: #6da243;
}

.main_wrapper_form_cursos .left_menu .register,
.main_wrapper_form_cursos .left_menu .pending {
display: block;
color: var(--Verde-oscuro);
text-decoration: none;
/* text-decoration: none; */
width: 80%;
text-decoration: underline;
margin: auto;
margin-top: 25px;
font-size: small;
cursor: pointer;
}

.main_wrapper_form_cursos .left_menu p:hover {
color: var(--Verde-oscuro);
}
Expand Down Expand Up @@ -243,6 +262,7 @@ h2 {
font-size: small;
margin-top: 3%;
}

.personal_information ul span {
margin-left: 10px;
}
Expand All @@ -253,6 +273,7 @@ h2 {
width: 50%;
height: 100%;
}

.form .first_line_form .rules_information .rules_rectangle {
background-color: var(--Naranja);
color: #e8e8e8;
Expand All @@ -271,6 +292,7 @@ h2 {
transform: translate(-50%, -50%);
cursor: pointer;
}

.form .first_line_form .rules_information .rules_circle {
color: #e8e8e8;
font-size: xx-large;
Expand All @@ -289,11 +311,13 @@ h2 {
transform: translate(-50%, -50%);
cursor: pointer;
}

.cancellation_form {
display: flex;
flex-direction: column;
align-items: center;
}

.cancellation_form table {
border-collapse: collapse;
width: 80%;
Expand Down Expand Up @@ -373,6 +397,7 @@ th {
margin-top: 20px;
text-align: left;
}

.secondary_form table {
border-collapse: collapse;
width: 80%;
Expand Down Expand Up @@ -416,7 +441,7 @@ th {

.secondary_form .check-button,
.delete-button {
margin-top: 20px;
/* margin-top: 20px; */
background-color: #35944b;
color: white;
font-size: 16px;
Expand All @@ -435,9 +460,11 @@ th {
.secondary_form .check-button:hover {
background-color: #8dc63f;
}

.secondary_form .delete-button:hover {
background-color: var(--Rojo);
}

.close-modal {
position: absolute;
top: 1.2rem;
Expand All @@ -448,9 +475,11 @@ th {
border: none;
background: none;
}

.hidden {
display: none;
}

.modal {
position: absolute;
top: 50%;
Expand All @@ -474,4 +503,4 @@ th {
background-color: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(3px);
z-index: 5;
}
}
Loading

0 comments on commit 9a1ff1e

Please sign in to comment.