| 1 |
/* ========= INFORMATION ============================ |
| 2 |
- document: Wow Plugin! |
| 3 |
- author: Dmytro Lobov |
| 4 |
- version: 1.0 |
| 5 |
|
| 6 |
==================================================== */ |
| 7 |
|
| 8 |
/* Tab style */ |
| 9 |
.wow-plugin .tab-box{ |
| 10 |
width: 100%; |
| 11 |
box-sizing: border-box; |
| 12 |
} |
| 13 |
.wow-plugin .tab-box:after{ |
| 14 |
clear:both; |
| 15 |
content:""; |
| 16 |
display:block; |
| 17 |
} |
| 18 |
.wow-plugin .tab-nav{ |
| 19 |
margin:0; |
| 20 |
padding:0; |
| 21 |
list-style:none; |
| 22 |
width:145px; |
| 23 |
float:left; |
| 24 |
border-right: 1px solid #1f9ef8; |
| 25 |
|
| 26 |
} |
| 27 |
.wow-plugin .tab-nav li{ |
| 28 |
float:left; |
| 29 |
margin-bottom:1px; |
| 30 |
} |
| 31 |
.wow-plugin .tab-nav li a{ |
| 32 |
display:inline-block; |
| 33 |
width:125px; |
| 34 |
padding:10px 10px; |
| 35 |
font-size:14px; |
| 36 |
color:#000; |
| 37 |
text-decoration:none; |
| 38 |
} |
| 39 |
.wow-plugin .tab-nav li a:hover{ |
| 40 |
color:#000; |
| 41 |
text-decoration:none; |
| 42 |
font-weight: 700; |
| 43 |
} |
| 44 |
.wow-plugin .tab-nav li.select a{ |
| 45 |
background: #fff; |
| 46 |
box-shadow: none; |
| 47 |
border-bottom: 1px solid #1f9ef8; |
| 48 |
font-weight: 700; |
| 49 |
} |
| 50 |
.wow-plugin .tab-nav .active{ |
| 51 |
display:inline-block; |
| 52 |
padding:5px; |
| 53 |
} |
| 54 |
.wow-plugin .tab-box>div{ |
| 55 |
margin:0 0 0 145px; |
| 56 |
padding:10px; |
| 57 |
border-left: 1px solid #1f9ef8; |
| 58 |
} |
| 59 |
.wow-plugin .tab-panels{ |
| 60 |
background:#fff; |
| 61 |
} |
| 62 |
|
| 63 |
/* Flexbox elements */ |
| 64 |
.wow-container { |
| 65 |
display: flex; |
| 66 |
justify-content: space-around; |
| 67 |
} |
| 68 |
.wow-container .wow-element { |
| 69 |
width: 100%; |
| 70 |
padding:10px; |
| 71 |
} |
| 72 |
.wow-plugin label { |
| 73 |
font-weight: 600; |
| 74 |
cursor: default; |
| 75 |
} |
| 76 |
.wow-plugin label[for] { |
| 77 |
cursor: pointer; |
| 78 |
} |
| 79 |
/* form elements style */ |
| 80 |
.wow-element input[type=text],.wow-element input[type=tel],.wow-element input[type=number], .wow-element input[type=date], .wow-element select , .wow-element textarea{ |
| 81 |
width: 100%; |
| 82 |
-moz-box-sizing: border-box; |
| 83 |
box-sizing: border-box; |
| 84 |
display: inline-block; |
| 85 |
} |
| 86 |
|
| 87 |
.wow-plugin fieldset { |
| 88 |
border: 1px solid #eee; |
| 89 |
margin: 15px 0; |
| 90 |
} |
| 91 |
.wow-plugin legend { |
| 92 |
font-size: 18px; |
| 93 |
font-weight: bold; |
| 94 |
padding: 0 25px 0 10px; |
| 95 |
} |
| 96 |
|
| 97 |
/* Tooltip container */ |
| 98 |
.wow-help { |
| 99 |
font-size: 14px; |
| 100 |
cursor:help; |
| 101 |
} |
| 102 |
.wow-ui-tooltip{ |
| 103 |
position:absolute; |
| 104 |
background:#333; |
| 105 |
border-width:1px!important; |
| 106 |
border-radius:3px!important; |
| 107 |
box-shadow:1px 1px 2px 1px rgba(214,214,214,.5)!important; |
| 108 |
color:#dedede!important; |
| 109 |
max-width:300px!important; |
| 110 |
padding:7px!important; |
| 111 |
text-rendering:optimizeLegibility; |
| 112 |
text-shadow:none!important; |
| 113 |
z-index: 100051!important; |
| 114 |
} |
| 115 |
|
| 116 |
/* Right Sidebar */ |
| 117 |
.wow-sidebar h2 { |
| 118 |
border-bottom: 1px solid #eee; |
| 119 |
} |
| 120 |
|
| 121 |
.wow-sidebar .wow-element { |
| 122 |
padding: 0; |
| 123 |
} |
| 124 |
|
| 125 |
.wow-sidebar .wow-element h4 { |
| 126 |
line-height: auto; |
| 127 |
font-size: 14px; |
| 128 |
margin: 0 0 10px 0; |
| 129 |
} |
| 130 |
|
| 131 |
.wow-facebook::after { |
| 132 |
font-family: dashicons; |
| 133 |
content: "\f305"; |
| 134 |
margin-left: 5px; |
| 135 |
} |
| 136 |
|
| 137 |
.wow-email::after { |
| 138 |
font-family: dashicons; |
| 139 |
content: "\f469"; |
| 140 |
margin-left: 5px; |
| 141 |
} |
| 142 |
|