Skip to content

Instantly share code, notes, and snippets.

@hensm
Created October 9, 2015 09:20
Show Gist options
  • Save hensm/b9548837ea708eaa04f6 to your computer and use it in GitHub Desktop.
Save hensm/b9548837ea708eaa04f6 to your computer and use it in GitHub Desktop.
#fullscreen-warning {
background: rgb(255, 255, 255) !important;
border: none !important;
border-radius: 2px !important;
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5), 0 5px 0 rgba(0, 0, 0, 0.1), 0 5px 25px rgba(0, 0, 0, 0.4) !important;
box-sizing: content-box !important;
opacity: 0 !important;
padding: 15px 15px !important;
transform: translate(-50%, 50px) scale(0.9) !important;
}
#fullscreen-warning[onscreen] {
opacity: 1 !important;
transform: translate(-50%, 50px) scale(1) !important;
}
#fullscreen-warning,
#fullscreen-warning[onscreen] {
transition: opacity 175ms ease-in, transform 175ms ease-in !important;
}
#fullscreen-warning::before {
display: none !important;
}
#fullscreen-domain,
#fullscreen-domain-text,
#fullscreen-generic-text,
#fullscreen-exit-button {
color: #222 !important;
font-size: 16px !important;
font-weight: normal !important;
margin: 0 !important;
}
#fullscreen-exit-button {
-moz-appearance: none !important;
background: none !important;
border: none !important;
cursor: pointer !important;
text-decoration: underline !important;
padding: 0 !important;
margin-left: 40px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment