A Pen by Robert Butler on CodePen.
Created
July 28, 2018 21:55
-
-
Save lighth7015/15531e12ec6f5cd785143a6c2bb8bb28 to your computer and use it in GitHub Desktop.
vaWJaz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="fadeIn fixed z-50 pin overflow-auto flex"> | |
<div class="window fixed max-w-md relative pin-b pin-x align-top m-auto p-0 h-auto flex flex-col"> | |
<main class="client"> | |
<header class="font-bold text-white">Building application</header> | |
<p class="text-xl leading-normal p-2"> | |
One moment please... | |
</p> | |
</main> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face { | |
font-family: 'FixedsysExcelsior301Regular'; | |
src: url('//doir.ir/fixedsys/fsex300-webfont.eot'); | |
src: url('//doir.ir/fixedsys/fsex300-webfont.eot?#iefix') format('embedded-opentype'), | |
url('//doir.ir/fixedsys/fsex300-webfont.woff') format('woff'), | |
url('//doir.ir/fixedsys/fsex300-webfont.ttf') format('truetype'), | |
url('//doir.ir/fixedsys/fsex300-webfont.svg#FixedsysExcelsior301Regular') format('svg'); | |
font-weight: normal; | |
font-style: normal; | |
-webkit-font-smoothing:aliased; | |
font-smooth:never; | |
} | |
* { font-family: "FixedsysExcelsior301Regular", sans-serif; } | |
body { background: #3a6ea5; } | |
.window { | |
width: 476px; | |
background: #c0c0c0; | |
border: 1px solid; | |
border-left-width: 0; | |
border-top-width: 0; | |
border-top-color: #dfdfdf; | |
border-left-color: #dfdfdf; | |
border-right-color: black; | |
border-bottom-color: black; | |
} | |
.window > main.client { | |
border: 2px solid; | |
border-top-color: white; | |
border-left-color: white; | |
border-right-color: #808080; | |
border-bottom-color: #808080; | |
} | |
.window > main.client > header { | |
background-color: #000080; | |
padding: 0 5px; | |
font-size: 0.7em; | |
line-height: 1.7em; | |
background: linear-gradient(to right, #000080, #1084d0); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/0.6.4/tailwind.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment