about summary refs log tree commit diff
path: root/app/assets/stylesheets/about.scss
blob: 5ebe2576fa084c683ffd7241bb180cb350126306 (plain) (blame)
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
@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url(https://fonts.googleapis.com/css?family=Judson);

.about-body {
  .wrapper {
    max-width: 600px;
    margin: 0 auto;
    color: #9baec8;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  h1 {
    font: 46px/52px 'Roboto', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2b90d9;
    padding: 20px 0;

    img {
      margin-bottom: -5px;
      margin-right: 5px;
      width: 46px;
      height: 46px;
    }
  }

  p {
    font: 20px/28px 'Judson', sans-serif;
    font-weight: 300;
    margin-bottom: 26px;
  }

  em {
    display: inline-block;
    padding: 7px 7px 5px 7px;
    background: #9baec8;
    color: #282c37;
    font: 16px/16px 'Montserrat', sans-serif;
    font-weight: 300;
  }

  .screenshot {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 26px;

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
  }

  .actions {
    overflow: hidden;

    .info {
      float: right;
      text-align: right;
      line-height: 36px;

      a {
        color: #9baec8;
        text-decoration: underline;
      }
    }
  }

  @media screen and (max-width: 360px) {
    .wrapper {
      padding: 20px;
    }
  }
}