Skip to content

Commit

Permalink
Collectstatic
Browse files Browse the repository at this point in the history
  • Loading branch information
stariluz committed Jul 22, 2024
1 parent 4ec0132 commit edf98f7
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 2 deletions.
57 changes: 57 additions & 0 deletions assets/css/auth/sesion.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
html {
height: 100%;
}

body {
margin: 0;
height: 100%;
box-sizing: border-box;
background: rgb(24, 23, 31);
background: linear-gradient(45deg, rgba(24, 23, 31, 1) 0%, rgba(18, 15, 83, 1) 55%, rgba(0, 99, 255, 1) 100%);
}

.main-container {
height: 100%;
display: flex;
align-items: center;
}

.auth-title {
text-align: center;
font-size: 2rem;
font-weight: 700;
}

.auth-container {
max-width: 400px;
padding: 20px 30px;
box-sizing: border-box;
background-color: #ffffff;
box-shadow: 2px 2px 20px -5px #2c2d2ca6;
border-radius: 10px;
}

.auth-container-header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.auth-container h1,
.auth-container h2 {
margin: 10px 0px;
letter-spacing: 2px;
}

.auth-container p {
font-size: 20px;
}

.invalid-feedback {
text-align: start !important;
}

.btn {
border-radius: 50px 50px 50px 50px;
}
4 changes: 2 additions & 2 deletions assets/css/posts/new.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.posts-grid {
/* .posts-grid {
display: flex;
justify-content: center;
}
} */

0 comments on commit edf98f7

Please sign in to comment.