Welcome to mirror list, hosted at ThFree Co, Russian Federation.

home.scss « stylesheets « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1dd6555adfc249de9be2697f580dbe006b48f83a (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
.page-home {
  background-color: $main-background;

  h3 {
    border-bottom: 1px dashed $border-grey;
    font-weight: bold;
    margin: 0 0 15px;
    padding-bottom: 15px;
  }

  .container-fluid.home-user {
    padding-bottom: 75px;
    padding-top: 75px;
  }

  .dandelion-background {
    background: image-url('dandelion.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .jumbotron {
    background-color: rgba($black, .4);
    margin-bottom: 0;

    h1,
    h2 {
      color: $white;
      font-weight: bold;
      text-shadow: 0 2px 2px $black;
    }
  }

  .landing-info-card {
    background-color: $framed-background;
    border: 1px solid $border-grey;
    box-shadow: $card-shadow;
    margin-bottom: 25px;
    margin-top: 25px;
    min-height: 150px;
    padding: 15px;
  }

  .login-form {
    fieldset { background: none; }

    .block-form {
      background-color: rgba($white, .25);
      border-radius: 5px;
      margin: 0;
      max-width: 400px;
      padding: 1em;
    }
  }
}