forked from julkwel/bonane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
183 lines (150 loc) · 3.1 KB
/
style.css
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
175
176
177
178
179
180
181
182
183
/* basic styles for black background and crosshair cursor */
body {
background: #000 !important;
margin: 0;
overflow: hidden !important;
}
canvas {
cursor: crosshair;
display: block;
}
.text {
color: white;
position: absolute;
top: 25%;
text-align: center;
display: block;
width: 100%;
font-family: 'Montserrat', Sans-Serif;
font-size: 1.5rem
}
#year {
color: rgba(211, 136, 23, 0.678);
}
/**
Carroussel css
*/
/* carousel */
#quote-carousel {
padding: 0 10px 30px 10px;
margin-top: 30px;
}
/* Control buttons */
#quote-carousel .carousel-control {
background: none;
color: #222;
font-size: 2.3em;
text-shadow: none;
margin-top: 30px;
}
/* Previous button */
#quote-carousel .carousel-control.left {
left: -12px;
}
/* Next button */
#quote-carousel .carousel-control.right {
right: -12px !important;
}
/* Changes the position of the indicators */
#quote-carousel .carousel-indicators {
right: 50%;
top: auto;
bottom: 0px;
margin-right: -19px;
}
/* Changes the color of the indicators */
#quote-carousel .carousel-indicators li {
background: #c0c0c0;
}
#quote-carousel .carousel-indicators .active {
background: #333333;
}
#quote-carousel img {
/*width: 250px;*/
/*height: 100px*/
}
/* End carousel */
.item blockquote {
border-left: none;
margin: 0;
}
.item blockquote img {
margin-bottom: 10px;
}
.item blockquote p:before {
content: "\f10d";
font-family: 'Fontawesome';
float: left;
margin-right: 10px;
}
/**
MEDIA QUERIES
*/
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
#quote-carousel {
margin-bottom: 0;
padding: 0 40px 30px 40px;
}
}
/* Small devices (tablets, up to 768px) */
@media (max-width: 768px) {
/* Make the indicators larger for easier clicking with fingers/thumb on mobile */
#quote-carousel .carousel-indicators {
bottom: -20px !important;
}
#quote-carousel .carousel-indicators li {
display: inline-block;
margin: 0px 5px;
width: 15px;
height: 15px;
}
#quote-carousel .carousel-indicators li.active {
margin: 0px 5px;
width: 20px;
height: 20px;
}
}
.gasy-content {
width: 100% !important;
height: 100% !important;
overflow-y: hidden;
overflow-x: hidden !important;
}
.carousel-indicators {
list-style: none;
}
.carousel-indicators li, .carousel-indicators li.active {
transition: 1s;
}
.carousel-indicators li, .carousel-indicators li.active {
-webkit-backface-visibility: hidden;
}
.carousel-indicators li, .carousel-indicators li.active {
width: 30px;
height: 30px;
background-color: #fff;
position: relative;
margin: 0px;
border-radius: 50%;
}
.carousel-indicators img {
position: absolute;
width: 100%;
border-radius: 50%;
height: 100%;
top: 0;
left: 0;
}
.github-link{
color: white;
right: 10px;
position: absolute;
top: 10px;
}
.github-link:hover{
color: white;
}
.github-link > i {
font-size:2.333333em!important;
}