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

layout.scss « _scss « assets « the-roots-home « themes - github.com/rmsubekti/the-roots-home.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e828ca8c95d3003934e8c0a070955acf4fed539c (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/**
 * Site header
 */
 .site-header {
    border-bottom: 1px dashed $grey-color-light;
    min-height: $spacing-unit * 1.865;
    display: flex;
    align-items: flex-end;
    // Positioning context for the mobile navigation icon
    position: relative;
  }
 
  .site-nav {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
    display: inline;
    vertical-align: bottom;
    ol{
      margin: 0;
      padding: 0;
      list-style: none;
      li{
      display: inline;
      }
    }
  }
  .page-description{
    @include relative-font-size(.87);
    padding: 0;
    margin: 0;
  }
  /**
   * Site footer
   */
  .site-footer {
    font-size: 10px;
    border-top: 1px dashed $grey-color-light;
    margin-bottom: 20px;
    .left{
      float: left;
    }
    .right{
      float: right;
    }
  }


  /**
   * Page content
   */
  .page-content {
    padding: $spacing-unit 0;
  }
  
  .page-heading {
    @include relative-font-size(2);
  }
  
  
  .post-meta {
    font-size: $small-font-size;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: $grey-color;

    ul{
      float: right;
      li{
        display: inline-block;
      }
    }
  }
  
  section.item-list {
    .item{
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      font-weight: bold;
      width: 100%;
          display:flex;
          flex-wrap: wrap;
        h3{
          font-weight: bold;
          width: 35%;
          white-space: nowrap;
          overflow: hidden;
          text-align: left;
          text-overflow: ellipsis;
          flex:auto;
          margin: 0 16px 0 0;
        }
        span{
          width: calc(60% - 128px);
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          flex:auto;
          margin-right: 16px;
        }
        time{
          box-sizing: border-box;
          width: 96px;
          text-align: right;
        }
    }
  }


  h3.item-title {
    display: inline-block;
    @include relative-font-size(1);
    margin: .2em;
  }
  
  .pagination{
    display:flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: $spacing-unit;
  }
  
  /**
   * Posts
   */
  .post-header {
    margin-bottom: $spacing-unit/2;
    border-bottom: 1px dotted $grey-color-light;
  }
  
  .post-title {
    @include relative-font-size(1.25);
    letter-spacing: -1px;
    line-height: 1;
  }
  #disqus_thread{
    @include relative-font-size(.89);
  }
  .post-content {
    font-family: Tahoma, Arial, sans-serif;
    margin-bottom: $spacing-unit;
    p,li{
      @include relative-font-size(.89);
    }
    pre,code{
      @include relative-font-size(.82);
    }
  
    h2 {
      @include relative-font-size(1.1);
      font-weight: bold;
    }
  
    h3 {
      font-weight: bold;
      @include relative-font-size(1.075);
    }
  
    h4 {
      font-weight: bold;
      @include relative-font-size(.925);
    }
  }
  article~.pagination{
    padding: $spacing-unit 0;
    border-top: 1px dashed $grey-color-light;
  }

  .__h_instagram.card {
    font-size: 14px;
    border: 1px solid #bfbaba;
    padding: 10px 0;
    background: #fff;
    .card-link{
      padding-left: 16px;
    }
  }