aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/dash/app/pal/static/less/home.less
blob: ebd66a2ceb2c0d336a8f9c647dc04a9836a218ab (plain)
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
.home-template {
  .container {
    margin: 0 !important;
  }

  .card {
    width: 800px;
    max-width: 93%;
    height: fit-content;
    margin: 50px auto;
    padding: 60px;
    background: white;
    box-shadow: 0 0 5px rgba(65, 67, 144, 0.15);
    text-align: center;
    @media (max-width: 800px) {
      max-width: 78%;
      width: unset;
      padding: 40px;
    }

    .logo {
      width: 50px;
      margin: auto;
    }

    .site-title {
      margin: 10px 0 3px;
      color: #5f6988;
      font-family: proxima-nova, sans-serif;
      font-size: 2.3em;
      line-height: 1;
      text-transform: uppercase;
    }

    p {
      margin: 0;
      color: #7f92af;
      font-size: 1.08em;
    }

    a {
      color: #79aec8;
      font-weight: 500;
      text-decoration: none;
      transition: all .2s ease;
    }

    .dash-link {
      display: block;
      margin-top: 30px;
      font-size: 1.1em;
      font-weight: 600;

      &:hover {
        opacity: .7;
      }

      i {
        margin-left: 6px;
        font-size: .9em;
      }
    }
  }
}