|
|
|
@ -5,7 +5,7 @@
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background-color: #2a2a72;
|
|
|
|
|
background-color: rgb(13, 17, 23);
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
|
display: flex;
|
|
|
|
@ -16,17 +16,14 @@ body {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-form {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 700px;
|
|
|
|
|
.container {
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-form input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
background-color: #4c2885;
|
|
|
|
|
border: none;
|
|
|
|
|
background: #161b22;
|
|
|
|
|
border: 1px solid rgb(48, 54, 61);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 1rem;
|
|
|
|
@ -36,7 +33,6 @@ body {
|
|
|
|
|
box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05),
|
|
|
|
|
0 15px 40px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-form input::placeholder {
|
|
|
|
|
color: #bbb;
|
|
|
|
|
}
|
|
|
|
@ -46,21 +42,19 @@ body {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card {
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
background-color: #4c2885;
|
|
|
|
|
background-color: #161b22;
|
|
|
|
|
border: 1px solid rgb(48, 54, 61);
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05),
|
|
|
|
|
0 15px 40px rgba(0, 0, 0, 0.1);
|
|
|
|
|
box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05), 0 15px 40px rgba(0, 0, 0, 0.1);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 3rem;
|
|
|
|
|
margin: 0 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border: 10px solid #2a2a72;
|
|
|
|
|
height: 150px;
|
|
|
|
|
width: 150px;
|
|
|
|
|
border: 10px solid #7b7b7b59;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-info {
|
|
|
|
@ -77,12 +71,13 @@ body {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0;
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-info ul li {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-info ul li strong {
|
|
|
|
@ -93,21 +88,55 @@ body {
|
|
|
|
|
.repo {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #212a72;
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
background-color: rgb(13,17,23);
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
padding: 0.25rem 0.5rem;
|
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
|
@media (max-width: 576px) {
|
|
|
|
|
.container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.card , .user-form {
|
|
|
|
|
min-width: 322px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
|
.container {
|
|
|
|
|
width: 540px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.card {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-form {
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
.user-info {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
|
.container {
|
|
|
|
|
width: 720px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (min-width: 992px) {
|
|
|
|
|
.container {
|
|
|
|
|
width: 960px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (min-width: 1200px) {
|
|
|
|
|
.container {
|
|
|
|
|
width: 1140px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (min-width: 1400px) {
|
|
|
|
|
.container {
|
|
|
|
|
width: 1320px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|