Fixed backend URL | Some features

This commit is contained in:
2020-10-24 19:25:36 +02:00
parent f5f758dbdc
commit 8325759c2f
13 changed files with 95 additions and 36 deletions

View File

@@ -131,6 +131,7 @@
display: flex;
flex-flow: column;
align-items: center;
height: 100%;
width: 100%;
overflow: auto;
}
@@ -156,24 +157,26 @@
.subscription-cards {
display: flex;
justify-content: space-around;
margin-top: 18px;
margin-top: 48px;
}
.subscription-card {
background-color: #242424;
background-color: #474747;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
min-width: 260px;
max-width: 300px;
border-radius: 8px;
width: 220px;
border-radius: 18px;
box-shadow: #0000002d 2px 2px 5px;
h1 {
font-weight: 200;
font-weight: 500;
margin-left: 8px;
font-size: 1.5rem;
}
h2 {
font-weight: 300;
font-size: 1.2rem;
font-weight: 400;
font-size: 1.1rem;
color: #c0c0c0;
}
p {
@@ -181,6 +184,25 @@
font-size: 14px;
padding-left: 16px;
padding-right: 16px;
color: #838383;
color: $secondary-color;
}
transition: background-color 0.2s;
}
.subscription-card:hover {
cursor: pointer;
background-color: #575757;
}
.subscription-desc {
background-color: #333333;
height: 100px;
display: flex;
flex-direction: column;
justify-content: center;
}
.subscription-title {
display: flex;
align-items: center;
}

View File

@@ -29,8 +29,20 @@
margin: 18px;
}
.hs-bottom {
h4 {
font-size: 14px;
}
}
.hs-bottom-icon {
opacity: 0.6;
height: 3rem;
margin: 10px;
cursor: pointer;
transition: opacity 0.2s;
}
.hs-bottom-icon:hover {
opacity: 1;
}