Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
@import '../../sass/styles';
.register-page {
font-family: $font-default;
color: $text-dark;
h2 {
font-family: $font-header;
font-weight: bolder;
font-size: 28px;
margin: 5px 10px 0px 0px;
text-align: center;
}
}
input {
color: $text-dark;
font-size: 20px;
border-color: #9d9d9d;
border-radius: 4px;
border-style: solid;
}
.register-card {
padding: 10px 20px;
background-color: $white;
border: 2px solid $text-dark;
border-radius: 10px;
}
.input-text {
font-size: 20px;
display: block;
margin-top:10px;
}
.input-block {
width: 45%;
display: inline-block;
margin-left: 3%;
@media only screen and (max-width: $break-small) {
display: block;
width: 100%;
}
}
.submit-button {
color: $text-light;
background-color: $bg-secondary;
text-align: center;
font-size: 20px;
padding: 5px 20px;
margin-top: 20px;
display: inline-block;
border-style: none;
border-radius: 4px;
cursor: pointer;
&:hover {
text-decoration: none;
background: $dark-purple;
}
@media only screen and (max-width: $break-small) {
width: 90%;
margin-left: 5%;
margin-right: 5%;
}
}
.file-input {
color: $text-light;
background-color: $bg-secondary;
text-align: center;
font-size: 20px;
padding: 5px 20px;
width: 30%;
margin-left: 20px;
margin-right: 36%;
display: inline-block;
border-style: none;
border-radius: 4px;
cursor: pointer;
&:hover {
text-decoration: none;
background: $dark-purple;
}
@media only screen and (max-width: $break-small) {
width: 90%;
margin-left: 5%;
margin-right: 5%;
}
}
.selected-image {
font-size: 20px;
display: inline-block;
margin-top: 20px;
margin-left: 20px;
@media only screen and (max-width: $break-small) {
width: 94%;
margin-left: 3%;
margin-right: 3%;
margin-bottom: 10px;
}