Projekt

Obecné

Profil

« Předchozí | Další » 

Revize c4f6e57a

Přidáno uživatelem Adam Mištera před asi 4 roky(ů)

Issue #7848 @3h
[+] Vizualizace hlavní stránky

Zobrazit rozdíly:

resources/sass/_custom.scss
1 1
// Ready for custom styling
2 2

  
3
body
4
{
3
body {
4
    font-family: 'Nunito Sans', sans-serif;
5 5
    background-color: $cusBlack;
6
}
7

  
8
.head-title.text-center h1
9
{
10
    color: $cusWhite;
11
    font-family: Avenir;
12
    font-size: 60pt;
13
    font-weight: bold;
14
    letter-spacing: 3px;
15
}
16

  
17
.bouton-image:before
18
{
19
    content: "";
20
    width: 100px;
21
    height: 100px;
22
    display: inline-block;
23
    margin-right: 5px;
24
    vertical-align: text-top;
25
    background-color: transparent;
26
    background-position : center center;
27
    background-repeat:no-repeat;
28
}
29

  
30
.bouton-image
31
{
32
    background-color: transparent;
33
    border-color: transparent;
34
}
35 6

  
36
.monBouton:before
37
{
38
    background-image : url(../images/Button_Arrow_Small.png);
39
}
7
    .head-title h1 {
8
        color: $cusWhite;
9
        font-size: 60pt;
10
        font-weight: bold;
11
        letter-spacing: 3px;
12
    }
40 13

  
41
.monBouton:hover
42
{
43
    background-color: transparent;
44
    border-color: $cusBrown3;
45
}
14
    .carousel {
15
        .carousel-inner {
16
            img {
17
                filter: grayscale(100%);
18
            }
19
        }
20

  
21
        .carousel-caption {
22
            top: 20%;
23
            bottom: 20%;
24
            background-color:  rgba(239, 218, 179, 0.5);
25

  
26
            h2 {
27
                font-size: 11pt;
28
                letter-spacing: 3pt;
29
                color: $white;
30

  
31
            }
32

  
33
            p {
34
                font-size: 9pt;
35
                color: $black;
36
            }
37
        }
38
    }
46 39

  
47
.monBouton:focus
48
{
49
    background-color: transparent;
50
    border-color: $cusBrown3;
51
    outline: none !important;
52
    box-shadow: none !important;
53
}
40
    .button-square {
41
        background-color: $black;
42
        color: $white;
43
        border: 1pt solid $white;
44
        border-radius: 0;
45
    }
54 46

  
55
.monBouton:active
56
{
57
    background-color: transparent !important;
58
    border-color: transparent !important;
59
    outline: none !important;
60
    box-shadow: none !important;
61
}
47
    .button-image {
48
        background-color: transparent;
49
        border-color: transparent;
50

  
51
        &:before {
52
            content: "";
53
            width: 100px;
54
            height: 100px;
55
            display: inline-block;
56
            margin-right: 5px;
57
            vertical-align: text-top;
58
            background-color: transparent;
59
            background-position : center center;
60
            background-repeat:no-repeat;
61
        }
62
    }
62 63

  
63
.content {
64
    position: relative;
65
}
64
    .monButton {
65

  
66
        &:before {
67
            background-image : url(../images/Button_Arrow_Small.png);
68
        }
69

  
70
        &:hover {
71
            background-color: transparent;
72
            border-color: $cusBrown3;
73
        }
74

  
75
        &:focus {
76
            background-color: transparent;
77
            border-color: $cusBrown3;
78
            outline: none !important;
79
            box-shadow: none !important;
80
        }
81

  
82
        &:active {
83
            background-color: transparent !important;
84
            border-color: transparent !important;
85
            outline: none !important;
86
            box-shadow: none !important;
87
        }
88
    }
66 89

  
67
//Circle style button
68
.btn-circle.rounded-circle.btn-sm
69
{
70
    position: absolute;
71
    width: 120px;
72
    height: 120px;
73
    padding: 6px 0px;
74
    border-radius: 15px;
75
    font-size: 16px;
76
    text-align: center;
77
    background-color: $cusBlack;
78
    border-color: $cusBrown3;
79
    border-width: 5px;
80
    color:$cusBrown3;
81
    outline: none !important;
82
    box-shadow: none !important;
83
}
84 90

  
85
.btn-circle.rounded-circle.btn-sm:active
86
{
87
    background-color: $cusBrown2;
88
    border-color: $cusBrown3;
89
    outline: none !important;
90
    box-shadow: none !important;
91
    color:$cusBlack;
91
    .content {
92
        position: relative;
93

  
94
        //Circle style button
95
        .btn-circle.rounded-circle.btn-sm {
96
            position: absolute;
97
            width: 120px;
98
            height: 120px;
99
            padding: 6px 0px;
100
            border-radius: 15px;
101
            font-size: 16px;
102
            text-align: center;
103
            background-color: $cusBlack;
104
            border-color: $cusBrown3;
105
            border-width: 5px;
106
            color:$cusBrown3;
107
            outline: none !important;
108
            box-shadow: none !important;
109

  
110
            &:active {
111
                background-color: $cusBrown2;
112
                border-color: $cusBrown3;
113
                outline: none !important;
114
                box-shadow: none !important;
115
                color:$cusBlack;
116
            }
117
        }
118

  
119
        .btn-circle.rounded-circle.btn-dm
120
        {
121
            position: absolute;
122
            width: 240px;
123
            height: 240px;
124
            padding: 6px 0;
125
            border-radius: 15px;
126
            font-size: 16px;
127
            text-align: center;
128
            background-color: $cusBlack;
129
            border-color: $cusBrown3;
130
            color:$cusBrown3;
131
            border-width: 5px;
132
            outline: none !important;
133
            box-shadow: none !important;
134

  
135
            &:active {
136
                background-color: $cusBrown2;
137
                border-color: $cusBrown3;
138
                outline: none !important;
139
                box-shadow: none !important;
140
                color:$cusBlack;
141
            }
142
        }
143

  
144
        .btn-circle.rounded-circle.btn-xl
145
        {
146
            position: absolute;
147
            width: 360px;
148
            height: 360px;
149
            padding: 6px 0px;
150
            border-radius: 15px;
151
            font-size: 16px;
152
            text-align: center;
153
            background-color: $cusBlack;
154
            border-color: $cusBrown3;
155
            color:$cusBrown3;
156
            border-width: 5px;
157
            outline: none !important;
158
            box-shadow: none !important;
159

  
160
            &:active {
161
                background-color: $cusBrown2;
162
                border-color: $cusBrown3;
163
                outline: none !important;
164
                box-shadow: none !important;
165
                color:$cusBlack;
166
            }
167
        }
168
    }
92 169
}
93 170

  
94
.btn-circle.rounded-circle.btn-dm
95
{
96
    position: absolute;
97
    width: 240px;
98
    height: 240px;
99
    padding: 6px 0px;
100
    border-radius: 15px;
101
    font-size: 16px;
102
    text-align: center;
103
    background-color: $cusBlack;
104
    border-color: $cusBrown3;
105
    color:$cusBrown3;
106
    border-width: 5px;
107
    outline: none !important;
108
    box-shadow: none !important;
109
}
110
.btn-circle.rounded-circle.btn-dm:active
111
{
112
    background-color: $cusBrown2;
113
    border-color: $cusBrown3;
114
    outline: none !important;
115
    box-shadow: none !important;
116
    color:$cusBlack;
117
}
118 171

  
119
.btn-circle.rounded-circle.btn-xl
120
{
121
    position: absolute;
122
    width: 360px;
123
    height: 360px;
124
    padding: 6px 0px;
125
    border-radius: 15px;
126
    font-size: 16px;
127
    text-align: center;
128
    background-color: $cusBlack;
129
    border-color: $cusBrown3;
130
    color:$cusBrown3;
131
    border-width: 5px;
132
    outline: none !important;
133
    box-shadow: none !important;
134
}
135
.btn-circle.rounded-circle.btn-xl:active
136
{
137
    background-color: $cusBrown2;
138
    border-color: $cusBrown3;
139
    outline: none !important;
140
    box-shadow: none !important;
141
    color:$cusBlack;
142
}
143 172

  
144 173
@media only screen and (max-width: 540px)
145 174
{

Také k dispozici: Unified diff