-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
112 lines (91 loc) · 2.53 KB
/
theme.css
File metadata and controls
112 lines (91 loc) · 2.53 KB
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
.bri_tc_lightblue {
color: #eb2035;
}
.bri_tc_lightbrown {
color: #1e4587;
}
.bri_tc_semibrown {
color: #9e8314;
}
.bri_tc_darkbrown {
color: #754c2c;
}
.bri_tc_coffee {
color: #613b2a;
}
.bri_bg {
background-color:#fff;
}
.bri_bg_gold {
color:#9E8313;
background-color: #613b2a;
}
.bri_img_norm {
}
.bri_btn_bg {
color: #fff;
background-color:#613b2a;
border: none;
}
.bri_btn_bg:hover {
color: #fff;
background-color: #754c2c;
border-color: #eb2035;
}
.bri_bg_wall {
background-image: url("images/art/coffee_cup_8_vecteezy.svg") ;
background-size: cover;
}
.bri_bg_floral {
background-image: url("images/art/coffee_cup_9_vecteezy.svg") ;
background-size: cover;
}
.bri_bg_package {
background-image: url("images/art/pack1.svg"), url("images/art/pack2.svg");
background-repeat: no-repeat, no-repeat;
background-position: top left, bottom right;
background-size: 50% 100%, 50% 100%;
}
@-moz-document url-prefix() {
.bri_bg_package {
background-image: url("images/art/package0.svg") ;
background-position: center;
background-size: 20% 100%;
}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.bri_bg_package {
background-image: url("images/art/package0.svg") ;
background-position: center;
background-size: 20% 100%;
}
}
@media
only screen and (max-width : 513px),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and ( min-device-pixel-ratio: 1.5) {
.bri_bg_package {
background-image: url("images/art/pack1.svg"), url("images/art/pack2.svg");
background-repeat: no-repeat, no-repeat;
background-position: top, bottom;
background-size: 100% 50%, 100% 50%;
}
}
/* bootstrap overrides */
.carousel-control-prev-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='blue' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='blue' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-caption {
position: absolute;
right: 15%;
bottom: 20px;
left: 15%;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #321F04;
text-align: center;
}