Blame view

prestige-vue-4.0.0/src/assets/sass/layout/_login.scss 2.49 KB
5b5ab7e5   함상기   20240409
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  
  
  .login-body{
      background: url("../images/pages/bg-login.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: top;
      background-attachment: fixed;
      display: flex;
      flex-direction: row;
      height: 100vh;
      padding: 0;
  
      .mobile-banner {
          width: 100%;
          text-align: center;
          display: none;
          margin: 25px 0;
      }
  
      .login-panel {
          position: fixed;
          text-align:center;
          height: 100%;
          width: 90px;
          opacity: 0.9;
          background: radial-gradient(circle at 50% 3%, #f3f4f9, #d7dbe8);
  
          .logo {
                margin-top: 40px;
          }
      }
  
      .login-card {
          align-self: center;
          margin-left: calc(10% + 90px);
          width: 25%;
          min-width: 420px;
          opacity: 0.9;
          border-radius: 2px;
          background: radial-gradient(circle at 50% 3%, #f3f4f9, #d7dbe8);
  
          .top-border {
              height:20px;
              opacity: 1;
  
          }
  
          .login-content {
              padding: 20px 50px;
  
              h1 {
                  color: #1b1c1e;
                  font-size: 28px;
                  font-weight: 700;
                  margin-bottom: 30px;
              }
  
              p {
                  color: #313842;
                  font-size: 16px;
                  font-weight: 500;
                  margin-bottom: 40px;
              }
  
              label {
                  font-size: 16px;
                  color: #313842;
                  margin-bottom: 15px;
              }
  
              .login-input {
                  margin-top: 15px;
                  margin-bottom: 15px;
  
                  input {
                      width: 100%;
                  }
              }
  
              .forgetpassword-container {
                  text-align: right;
                  margin-bottom: 40px;
                  color: #3ca4e7;
              }
  
              button {
                  width: 100%;
                  margin-bottom: 60px;
              }
          }
      }
  }
  
  @media screen and (max-width: 40em) {
  
      .login-body {
          background-position: right;
          flex-direction: column;
  
          .mobile-banner {
              display: block;
          }
  
          .top-border {
              display: none;
          }
  
          .login-panel {
             display: none;
          }
  
          .login-card {
              width: 100%;
              min-width: 100%;
              margin-left: 0;
              height: 100%;
  
              .login-content {
                  padding: 30px 30px;
              }
          }
      }
  }