diff options
| author | 8cy <[email protected]> | 2020-04-21 01:16:29 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-21 01:16:29 -0700 |
| commit | f410b0f585707e8e61d8bee7c1ca56a895a02466 (patch) | |
| tree | 101131c47e00d32d4e3cae1bea6153c91c4b3119 /stylesheetLogin.css | |
| parent | Create index.html (diff) | |
| download | acantha.ga-admin-f410b0f585707e8e61d8bee7c1ca56a895a02466.tar.xz acantha.ga-admin-f410b0f585707e8e61d8bee7c1ca56a895a02466.zip | |
A New Beginning
Diffstat (limited to 'stylesheetLogin.css')
| -rw-r--r-- | stylesheetLogin.css | 281 |
1 files changed, 281 insertions, 0 deletions
diff --git a/stylesheetLogin.css b/stylesheetLogin.css new file mode 100644 index 0000000..eb71fbd --- /dev/null +++ b/stylesheetLogin.css @@ -0,0 +1,281 @@ +@charset "UTF-8"; +/* CSS Document */ + + +::-webkit-scrollbar { + width: 0px; /* remove scrollbar space */ + background: transparent; /* optional: just make scrollbar invisible */ +} + +* { + margin:0; + padding:0; + + } + +body { + background-color:black; + color:#c1b492; + letter-spacing:8px; + font-smooth: never; + -webkit-font-smoothing : none; + text-align:center; + + + } + +img { + opacity:0; + animation: opacity 0.2s ease-in forwards; + animation-delay:0.6s; + user-drag: none; + user-select: none; + -moz-user-select: none; + -webkit-user-drag: none; + -webkit-user-select: none; + -ms-user-select: none; + + } + + +#intro { + font-weight:normal; + font-size:30px; + letter-spacing:14px; + margin-top:30px; + margin-bottom:-10px; + } + +.jp { + font-size:14px; + margin-bottom:100px; + letter-spacing:0px; + font-smooth: auto; + -webkit-font-smoothing : auto; + } + +.descp { + margin-top:0px; + display:inline-block; + width:450px; + font-size:10px; + margin-bottom:10px; + text-align:left; + clear:both; + text-indent:-77px; + letter-spacing:4px; + + + + + } + +.descp:first-line { + text-indent:0px; + } + +b { + color:#d2738a; + letter-spacing:8px; + } + +a { + margin-bottom:140px; + font-size:10px; + + + } + +hr { + border-color:#c1b492; + display:inline-block; + width:170px; + border-style:solid; + box-shadow:none; + border-bottom:0px; + } + +a { + text-decoration:none; + transition: color 0.5s ease-out; + display:inline-block; + + + } + +a:link { + color:#d2738a; + } + +a:visited { + color:#d2738a; + } + +a:hover { + color:#c1b492; + + } + +a:active { + color:#d2738a; + } + +.text { + background-color:#dfd5bc; + height:18px; + text-align:center; + margin-bottom:12px; + transition: background-color 0.5s ease-out; + width:170px; + + } + +.text:hover { + background-color:white; + + + } + +.text:focus { + background-color:white; + + } + +input { + border:none; + } + +.button { + color:#dfd5bc; + background-color:rgba(0,0,0,0.0); + width:100px; + cursor:pointer; + padding-left:12px; + padding-top:2px; + padding-bottom:2px; + letter-spacing:8px; + transition: color 0.5s ease-out, border-color 0.5s ease-out; + text-align:center; + border-radius:20px; + border-style: solid; + border-width: 2px; + border-color:#dfd5bc; + line-height:16px; + margin-bottom:100px; + + } + +.button:hover { + color:#d2738a; + border-color:#d2738a; + + + + } + +.darker { + position:relative; + width:100%; + height:100%; + background-image:url(bg_darker.gif); + animation: darkestDown 80s linear infinite; + + } + +.dark { + position:relative; + width:100%; + height:100%; + background-image:url(bg_dark_anim_0_08.gif); + animation: darkest 60s linear infinite; + + } + +.wiredGang { + position:relative; + width:100%; + height:100%; + background-image:url(wiredGang_04.gif); + background-repeat:repeat-x; + background-position:bottom; + animation: wiredGangAn 20s linear infinite; + + } + +.opacity { + position:relative; + width:100%; + height:100%; + background-color:rgba(0,0,0,0.0); + animation: opacityBg 0.3s linear forwards; + animation-delay:0.6s; + + } + +.opacityContent { + opacity:0; + animation: opacity 1s ease-in forwards; + animation-delay:3s; + + } + +.opacityContent2 { + opacity:0; + animation: opacity 1s ease-in forwards; + animation-delay:3.5s; + + } + +@keyframes darkest { + from { + background-position-y:1024px; + } + to { + background-position-x:-1024px; + } + } + + +@keyframes darkestDown { + from { + background-position-y:-1024px; + } + to { + background-position-x:1024px; + } + } + + + @keyframes wiredGangAn { + from { + background-position-x:341px; + } + to { + background-position-x:-341px; + } + } + + @keyframes opacity { + from { + opacity:0; + } + to { + opacity:1; + } + } + + @keyframes opacityBg { + from { + background-color:rgba(0,0,0,0.0); + } + to { + background-color:rgba(0,0,0,0.6); + } + } + + @keyframes opacityBG{ + 0%{opacity:0;} + 50%{opacity:1;} + 100%{opacity:0;} +} +
\ No newline at end of file |