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

footer.scss « modules « css « assets - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a6e94480f729259224f81edad32cc6da62e2722 (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
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
@import '../variables';
@import '../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables';

footer.page-footer {
  background-color: #2a2a36;

  h1 {
    margin-top: 70px;
    font-size: 19px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: -0.9px;
    color: #8e8e8e;
  }

  ul {
    list-style-type: none;
    padding-left: 0;
  }

  li {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff;
    width: 140px;
	  margin-top: 0;
    a {
      color: #ffffff;
      position: relative;

      &:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: white;
        visibility: hidden;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s;
      }

      &:hover {
        color: #ffffff;
        text-decoration: none;

        &:before {
            visibility: visible;
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }
      }
    }
  }

  p {
    padding-top: 50px;
    padding-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff;
    @media (max-width: $break-small) {
      float: left;
      padding-left: 15px;
    }

    a {
      color: #ffffff;
      &:hover {
        color: #ffffff;
      }
    }
  }

  @media (min-width: $break-small) and (max-width: $very-wide) {
    .container {
      width: 90%;
      max-width: 900px;
    }
  }
}

@media (max-width: $break-small) {
  footer.page-footer {
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;

    h1 {
      margin-top: 30px;
      font-size: 19px;
      font-weight: bold;
      line-height: 1.8;
      letter-spacing: -0.9px;
      color: #8e8e8e;
    }

    ul {
      list-style-type: none;
      padding-left: 0;
    }

    li {
      font-size: 15px;
      line-height: 1.8;
      color: #ffffff;
      width: 140px;
	  margin-top: 0;
    }
  }
}