| 1 |
/* Stream Connect Button */ |
| 2 |
|
| 3 |
.stream-button { |
| 4 |
display: inline-block; |
| 5 |
position: relative; |
| 6 |
padding: 0.6em 0.8em !important; |
| 7 |
font-size: 1.5em; |
| 8 |
font-weight: 600; |
| 9 |
text-decoration: none; |
| 10 |
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); |
| 11 |
letter-spacing: -1px; |
| 12 |
border-radius: 6px; |
| 13 |
background-color: #e14d43; |
| 14 |
border-bottom: 4px solid #b63f37; |
| 15 |
color: #fff; |
| 16 |
|
| 17 |
-webkit-transition: all 0.1s ease-in; |
| 18 |
-moz-transition: all 0.1s ease-in; |
| 19 |
-o-transition: all 0.1s ease-in; |
| 20 |
transition: all 0.1s ease-in; |
| 21 |
|
| 22 |
-webkit-font-smoothing: antialiased; |
| 23 |
-moz-osx-font-smoothing: grayscale; |
| 24 |
} |
| 25 |
|
| 26 |
.stream-button:hover { |
| 27 |
color: #fff; |
| 28 |
background: #ef5c52; |
| 29 |
} |
| 30 |
|
| 31 |
.stream-button:active { |
| 32 |
margin-bottom: 3px !important; |
| 33 |
border-bottom: 1px solid; |
| 34 |
color: #fff; |
| 35 |
|
| 36 |
-webkit-transform: translate(0px, 5px); |
| 37 |
-moz-transform: translate(0px, 5px); |
| 38 |
-o-transform: translate(0px, 5px); |
| 39 |
transform: translate(0px, 5px); |
| 40 |
} |
| 41 |
|
| 42 |
i.stream-icon:before { |
| 43 |
font-family: 'WP Stream' !important; |
| 44 |
content: '\73' !important; |
| 45 |
} |
| 46 |
|
| 47 |
i.stream-icon { |
| 48 |
display: inline-block; |
| 49 |
font-size: 1em; |
| 50 |
font-style: normal; |
| 51 |
color: #fff; |
| 52 |
|
| 53 |
-webkit-transition: color 0.1s ease-in 0; |
| 54 |
-moz-transition: color 0.1s ease-in 0; |
| 55 |
-o-transition: color 0.1s ease-in 0; |
| 56 |
transition: color 0.1s ease-in 0; |
| 57 |
} |
| 58 |
|
| 59 |
.stream-button i.stream-icon { |
| 60 |
margin-right: 0.4em; |
| 61 |
} |
| 62 |
|
| 63 |
|
| 64 |
/* Stream Connect Screen */ |
| 65 |
|
| 66 |
#wp-stream-connect { |
| 67 |
position: relative; |
| 68 |
width: 100%; |
| 69 |
height: 100%; |
| 70 |
margin: 0; |
| 71 |
padding: 0; |
| 72 |
text-align: center; |
| 73 |
font: 300 1.5em 'Open Sans', Helvetica, sans-serif; |
| 74 |
color: #616161; |
| 75 |
|
| 76 |
-webkit-font-smoothing: antialiased; |
| 77 |
-moz-osx-font-smoothing: grayscale; |
| 78 |
} |
| 79 |
|
| 80 |
#wp-stream-connect .wrap { |
| 81 |
width: 100%; |
| 82 |
margin: 0; |
| 83 |
padding: 4em 0; |
| 84 |
} |
| 85 |
|
| 86 |
#wp-stream-connect .stream-button { |
| 87 |
padding: 0.4em 0.8em 0.3em !important; |
| 88 |
font-size: 1.8em; |
| 89 |
font-weight: 400; |
| 90 |
} |
| 91 |
|
| 92 |
#wp-stream-connect .stream-connect-container p { |
| 93 |
margin: 10px 0; |
| 94 |
font-size: 1em; |
| 95 |
} |
| 96 |
|
| 97 |
#wp-stream-connect .stream-connect-container, |
| 98 |
#wp-stream-connect .stream-quotes-container { |
| 99 |
width: 100%; |
| 100 |
max-width: 840px; |
| 101 |
margin: 0 auto; |
| 102 |
} |
| 103 |
|
| 104 |
#wp-stream-connect .stream-quotes-container p { |
| 105 |
margin: 0.5em 0; |
| 106 |
font-size: 1.8em; |
| 107 |
line-height: 1.4em; |
| 108 |
} |
| 109 |
|
| 110 |
#wp-stream-connect .stream-quotes-container a { |
| 111 |
text-decoration: none; |
| 112 |
} |
| 113 |
|
| 114 |
#wp-stream-connect .stream-quotes-container a:hover { |
| 115 |
border-bottom: 1px dotted; |
| 116 |
} |
| 117 |
|
| 118 |
#wp-stream-connect p.stream-quote { |
| 119 |
padding: 1em 1em 0.2em; |
| 120 |
} |
| 121 |
|
| 122 |
#wp-stream-connect p.stream-quote-author { |
| 123 |
font-size: 1em; |
| 124 |
} |
| 125 |
|
| 126 |
#wp-stream-connect .stream-haiku { |
| 127 |
margin: 0 auto; |
| 128 |
margin-top: 100px; |
| 129 |
font-style: italic; |
| 130 |
} |
| 131 |
|
| 132 |
#wp-stream-connect .stream-haiku a { |
| 133 |
text-decoration: none; |
| 134 |
} |
| 135 |
|
| 136 |
|
| 137 |
/* Stream Tooltip */ |
| 138 |
|
| 139 |
.wp-stream-tooltip-text { |
| 140 |
border-bottom: 1px dotted rgba(0, 0, 0, 0.5); |
| 141 |
cursor: help; |
| 142 |
} |
| 143 |
|
| 144 |
.wp-stream-tooltip { |
| 145 |
position: absolute; |
| 146 |
display: none; |
| 147 |
max-width: 30em; |
| 148 |
padding: 1em; |
| 149 |
margin-left: -1em; |
| 150 |
background: #fff; |
| 151 |
border: 1px solid #e5e5e5; |
| 152 |
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1); |
| 153 |
box-shadow: 0 1px 1px rgba(0,0,0,.1); |
| 154 |
z-index: 10; |
| 155 |
cursor: default; |
| 156 |
text-align: left; |
| 157 |
font-family: 'Open Sans', sans-serif; |
| 158 |
font-size: 13px; |
| 159 |
font-weight: 400; |
| 160 |
} |
| 161 |
|
| 162 |
/* Stream Notice Box */ |
| 163 |
|
| 164 |
#stream-message #stream-dismiss { |
| 165 |
float: right; |
| 166 |
margin: 8px 8px 0 0; |
| 167 |
} |
| 168 |
|
| 169 |
#stream-message #stream-dismiss a { |
| 170 |
color: #aaa; |
| 171 |
} |
| 172 |
|
| 173 |
#stream-message #stream-dismiss a:hover { |
| 174 |
color: #777; |
| 175 |
} |
| 176 |
|
| 177 |
#stream-message.stream-connect { |
| 178 |
border-left: 4px solid #e14d43; |
| 179 |
} |
| 180 |
|
| 181 |
#stream-message .stream-message-container { |
| 182 |
padding: 0 8px; |
| 183 |
} |
| 184 |
|
| 185 |
#stream-message .stream-button-container { |
| 186 |
display: inline-block; |
| 187 |
margin: 20px 20px 0 0; |
| 188 |
vertical-align: top; |
| 189 |
} |
| 190 |
|
| 191 |
#stream-message .stream-message-text { |
| 192 |
display: inline-block; |
| 193 |
width: calc(100% - 285px); |
| 194 |
margin: 22px 0 12px; |
| 195 |
} |
| 196 |
|
| 197 |
#stream-message .stream-message-text h4 { |
| 198 |
font-size: 1.7em; |
| 199 |
font-weight: 400; |
| 200 |
margin: 0; |
| 201 |
} |
| 202 |
|
| 203 |
#stream-message .stream-message-text p { |
| 204 |
color: #616161; |
| 205 |
} |
| 206 |
|
| 207 |
|
| 208 |
/* Mobile */ |
| 209 |
|
| 210 |
@media all and (max-width: 782px) { |
| 211 |
#wp-stream-connect .stream-button, |
| 212 |
#wp-stream-connect .stream-quotes-container p { |
| 213 |
font-size: 1.4em; |
| 214 |
} |
| 215 |
|
| 216 |
#wp-stream-connect p.stream-quote-author { |
| 217 |
font-size: 0.8em; |
| 218 |
} |
| 219 |
|
| 220 |
#stream-message .stream-message-text { |
| 221 |
width: 100%; |
| 222 |
} |
| 223 |
} |
| 224 |
|