Socialify

Folder ..

Viewing login.page.scss
91 lines (92 loc) • 2.0 KB

 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// .logo {
//     margin: 30% auto 20px auto;
//     width: 75%;
//     display: block;
// }
// .logo-description {
//     font-size: 12px;
//     text-align: center;
//     margin-bottom: 50px;
// }
// #loginButton {
//     margin-top: 30px;
// }
// .regLink {
//     margin-top: 50px;
//     font-weight: 100;
//     font-size: 14px;
// }
// #registerButton {
//     margin-top: 30px;
// }
.full-width {
    background-image: url('../../assets/images/bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}
.container-login {
    width: calc(100% - 60px);
    padding: 30px 15px;
    // background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translate(-50%, 0%);
    // border-radius: 10px;
    // -webkit-box-shadow: 0px 5px 15px 1px rgba(0,0,0,0.75);
    // -moz-box-shadow: 0px 5px 15px 1px rgba(0,0,0,0.75);
    // box-shadow: 0px 5px 15px 1px rgba(0,0,0,0.75);
}
.title {
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 1.1em;
    color: white;
}
.inputLabel {
    color: rgb(224, 224, 224);
    text-transform: uppercase;
    font-size: 10px;
    display: block;
    margin: 15px 0px 5px 0px;
    font-weight: 700;
}
.inputField {
    display: block;
    width: calc(100% - 10px);
    padding: 8px 5px;
    border: solid 2px #5454B8;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}
.btn-left {
    font-weight: 700;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    padding: 10px 0px;
}
.btn-right {
    font-weight: 700;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
    text-transform: uppercase;
    float: right;
    color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.205);
    padding: 10px 20px;
    border-radius: 5px;
}
.btn-left:hover {
    color: white;
}
.btn-right:hover {
    color: white;
}