Spaces:
Sleeping
Sleeping
File size: 3,073 Bytes
534863f |
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
/** exchange-section **/
.exchange-section{
position: relative;
background: #F6F6F6;
}
.exchange-block-one .inner-box{
position: relative;
display: block;
background: #fff;
border: 1px solid #fff;
box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
margin-bottom: 30px;
}
.exchange-block-one .inner-box h5{
position: relative;
display: block;
font-size: 18px;
line-height: 28px;
text-transform: uppercase;
background: rgba(41, 235, 119, 0.10);
padding: 6px 0px;
}
.exchange-block-one.red .inner-box h5{
background: rgba(235, 41, 44, 0.10);
}
.exchange-block-one .inner-box h5 i{
position: relative;
color: rgba(75, 205, 95, 1);
margin-left: 3px;
}
.exchange-block-one.red .inner-box h5 i{
color: rgba(235, 41, 44, 1);
}
.exchange-block-one .inner-box .flag{
position: relative;
display: inline-block;
width: 70px;
border-radius: 50%;
margin: 34px 0px;
}
.exchange-block-one .inner-box .flag img{
width: 100%;
border-radius: 50%;
}
.exchange-block-one .inner-box .lower-box li{
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
padding: 6px 20px;
font-size: 14px;
line-height: 28px;
color: #676767;
}
.exchange-block-one .inner-box .lower-box li:nth-child(odd){
background: #F7F7F9;
}
.exchange-section .tab-btns{
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.exchange-section .tab-btns li{
position: relative;
display: inline-block;
font-size: 16px;
line-height: 30px;
font-family: var(--title-font);
font-weight: 700;
color: #222;
background: #fff;
padding: 19px 55px;
cursor: pointer;
z-index: 1;
margin-right: 10px;
transition: all 500ms ease;
}
.exchange-section .tab-btns li:last-child{
margin: 0px !important;
}
.exchange-section .tab-btns li.active-btn{
color: #fff;
}
.exchange-section .tab-btns li:before{
position: absolute;
content: '';
background: var(--theme-color);
width: 100%;
height: 100%;
left: 0px;
top: 0px;
opacity: 0;
z-index: -1;
transition: all 500ms ease;
}
.exchange-section .tab-btns li.active-btn:before{
opacity: 1;
}
.exchange-section .tab-btns li:after{
position: absolute;
content: '';
background: var(--theme-color);
width: 19px;
height: 8px;
left: 50%;
margin-left: -10px;
bottom: -8px;
clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
opacity: 0;
transition: all 500ms ease;
}
.exchange-section .tab-btns li.active-btn:after{
opacity: 1;
}
/** RTL **/
.rtl .exchange-section .tab-btns li{
margin-right: 0px;
margin-left: 10px;
}
/** responsive-css **/
@media only screen and (max-width: 1200px){
}
@media only screen and (max-width: 991px){
}
@media only screen and (max-width: 767px){
.exchange-section{
padding: 70px 0px 40px 0px;
}
}
@media only screen and (max-width: 599px){
}
@media only screen and (max-width: 499px){
.exchange-section .tab-btns li{
font-size: 13px;
padding: 15px;
}
}
|