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

typography.scss « modules « css « assets - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d2e25ddce13fce3ee7a2a7c8429f868da08c72e (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
@import '../variables';
@import '../helpers';
@import '../vendor/modular-scale/modular-scale';

.jumbotron {
    &--heading-1 {
        padding-top: 0;
        color: white !important;
        font-size: ms(3) !important;
        line-height: 120%;
        font-weight: 500;

        @media (max-width: $break-small) {
            font-size: ms(0, 34px) !important;
            line-height: 1 !important;
            margin-top: 0;
        }
    }

    &--lead {
      font-size: ms(0);
      color: white;
      line-height: 1.6;
      font-weight: 500;

      @media (max-width: $break-small) {
        font-size: ms(0, 16px)
      }
    }
}

.section {
    &--text--center {
        margin: 0 auto;
        text-align: center;
    }

    &--heading-1 {
        font-size: ms(3);
        font-weight: 300;
        line-height: 1.2;
        margin: 0;
        color: $dark-grey;

        @media (max-width: $break-small) {
            font-size: ms(2);
            line-height: 1;
            margin-top: 0;
        }
    }

    &--heading-2 {
        font-size: ms(2);
        font-weight: 300;
        color: $dark-grey;

        @media (max-width: $break-small) {
            font-size: ms(2);
            line-height: 1.2;
            margin-top: 0;
        }
    }

    &--intro {
        font-size: ms(0, 22px);
        font-weight: 300;
    }

    &--paragraph__tittle {
        font-size: ms(0, 22px);
        line-height: 30px;
        font-weight: 600;
        color: $dark-blue;
    }

    &--paragraph {
        font-size: ms(0);
        font-weight: 400;
        line-height: 1.5;
        color: $medium-grey;
    }
}

.hyperlink {
    color: #a2a2a2;
    text-decoration: none;
    font-weight: 500;
    border-bottom: solid 1px;
    transition: all 0.5s ease;
    text-decoration: none;

    &:hover {
        text-decoration: none;
        color: $dark-blue;
    }
}

h1 {
    margin-bottom: 10px;
    font-size: 60px;
    line-height: 120%;
    color: #555;
    font-weight: 500;
}

h2 {
    font-size: 60px;
    font-weight: 300;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

h3 {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  color: #555;
}

h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.36;
  color: #555;
  margin-bottom: 20px;
}

h5 {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  color: #555;
}

.text-center {
    margin: 0 auto;
    text-align: center;
}