File size: 2,902 Bytes
c8e4236
 
 
2b7567f
c8e4236
 
 
 
 
 
 
b4b2753
c8e4236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2b7567f
c8e4236
2b7567f
 
 
 
 
 
 
 
 
 
ede8cb9
6a7ee1e
2b7567f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fbfbee0
 
 
7e830c6
 
fbfbee0
 
 
 
 
 
7e830c6
fbfbee0
 
 
7e830c6
fbfbee0
 
 
 
7e830c6
76a5158
 
 
 
 
 
5aa283f
7e830c6
 
 
 
 
 
fbfbee0
 
2b7567f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c8e4236
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
@import "base";

$container-width: 500px !default;
$logo-font-size: 55px !default;
$button-font-size: 13px !default;
$dark-button-bg: #2d2d2d !default;
$dark-button-text: #ffffff !default;
$light-button-bg: #f5f5f5 !default;
$light-button-text: #2d2d2d !default;

.page-wrap {
  padding-top: 1px;
  width: $container-width;
  margin: auto;
}

.btn {
  font-size: $button-font-size;
  padding: 7px 10px;
  border-radius: 3px;

  &.btn__dark {
    background: $dark-button-bg;
    color: $dark-button-text;
  }

  &.btn__light {
    background: $light-button-bg;
    color: $light-button-text;
  }
}

section {
  margin-bottom: 35px;
}

.section__header {
  margin: 80px 0 50px;
  text-align: center;
  display: block;
  padding: 10px 10px 20px;

  h1 {
    font-size: $logo-font-size;
  }
}

/////////////////////////////////////////
div#sholo-popover-item {
  display: none;
  position: absolute;
  background: white;
  margin: 0;
  padding: 15px;
  border-radius: 5px;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  z-index: 1000000000;

  .sholo-popover-tip {
    border: 5px solid white;
    content: '';
    position: absolute;

    &.bottom {
      bottom: -10px;
      border-top-color: white;
      border-right-color: transparent;
      border-bottom-color: transparent;
      border-left-color: transparent;
    }

    &.left {
      left: -10px;
      top: 10px;
      border-top-color: transparent;
      border-right-color: white;
      border-bottom-color: transparent;
      border-left-color: transparent;
    }

    &.right {
      right: -10px;
      top: 10px;
      border-top-color: transparent;
      border-right-color: transparent;
      border-bottom-color: transparent;
      border-left-color: white;
    }

    &.top {
      top: -10px;
      border-top-color: transparent;
      border-right-color: transparent;
      border-bottom-color: white;
      border-left-color: transparent;
    }
  }

  .sholo-popover-footer {
    display: block;
    clear: both;
    margin-top: 5px;

    a {
      display: inline-block;
      padding: 3px 10px;
      border: 1px solid #d4d4d4;
      text-decoration: none;
      text-shadow: 1px 1px 0 #fff;
      color: #2d2d2d;
      font: 11px/normal sans-serif;
      cursor: pointer;
      outline: 0;
      background-color: #f1f1f1;
      border-radius: 2px;
      zoom: 1;
      margin: 10px 0 0;
    }

    a.sholo-disabled {
      color: #808080;
      cursor: default;
      pointer-events: none;
    }

    .sholo-close-btn {
      float: left;
    }

    .sholo-btn-group {
      float: right;
    }
  }

  .sholo-popover-title {
    font-size: 19px;
    margin: 0 0 5px;
    font-weight: bold;
    display: block;
    position: relative;
  }

  .sholo-popover-description {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #2d2d2d;
    font-weight: normal;
  }
}