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 /stylesheet.css | |
| parent | Create index.html (diff) | |
| download | acantha.ga-admin-f410b0f585707e8e61d8bee7c1ca56a895a02466.tar.xz acantha.ga-admin-f410b0f585707e8e61d8bee7c1ca56a895a02466.zip | |
A New Beginning
Diffstat (limited to 'stylesheet.css')
| -rw-r--r-- | stylesheet.css | 317 |
1 files changed, 317 insertions, 0 deletions
diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..7e760c6 --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,317 @@ +@charset "UTF-8"; +/* CSS Document */ + +* { + margin:0px; + padding:0px; + letter-spacing:8px; + font-smooth: never; + -webkit-font-smoothing: none; + /*-moz-osx-font-smoothing: grayscale;*/ + + } + +body { + background-image:url(bg/bg_main2.gif); + background-color:#d2738a; + color:#c1b492; + + + } + +a { + text-decoration:none; + + } + +a:link { + color:#d2738a; + } + +a:visited { + color:#d2738a; + } + +a:hover { + color:#d2738a; + animation: wiredB2 1s ease-out infinite; + + } + +a:active { + color:#d2738a; + } + +#navbar { + + background-color:black; + width:800px; + height:auto; + margin-left:auto; + margin-right:auto; + margin-top:40px; + box-shadow:black 0px 5px 10px; + text-align:center; + padding-top:40px; + + } + +h1 { + font-size:20px; + font-family:Times, "Times New Roman", serif; + font-weight:normal; + clear:both; + } + +h6 { + font-size:9px; + + } + +.intro { + font-size:9px; + + } + +.copy { + font-size:11px; + + } + +.mail { + font-size:9px; + + } + +.logo { + margin:20px; + + + } + +#navline { + font-size:13px; + letter-spacing:8px; + margin-bottom:20px; + + } + +.blinkFrame { + display:inline-block; + float:left; + width:400px; + font-weight:bolder; + + + } + + +hr { + + border-color:#d2738a; + border-bottom-width:2px; + + + + } + +#enterWired { + display:block; + background-image:url(15c.gif); + width:838px; + height:650px; + margin-left:auto; + margin-right:auto; + margin-top:30px; + + + + } + + +.article { + width:800px; + background-color:black; + height:auto; + margin-left:auto; + margin-right:auto; + margin-top:40px; + box-shadow:black 0px 5px 10px; + text-align:center; + letter-spacing:8px; + font-size:13px; + padding-top:20px; + + + } + +.article p { + margin:20px; + font-size:13px; + + + } + +.date { + font-size:9px; + line-height:0px; + margin:0px; + + } +.author { + font-size:13px; + line-height:40px; + margin:0px; + + } + +h5 { + font-weight:normal; + } + +b { + color:#d2738a; + font-weight:normal; + + } + +#footer { + margin-top:70px; + color:#d2738a; + border:0px; + text-align:center; + letter-spacing:8px; + font-size:9px; + margin-bottom:20px; + } + +#footer span { + background-color:black; + padding:3px; + + + } + +#footer a { + text-decoration:underline; + } + + +#note { + letter-spacing:0px; + } + +.article .comment { + font-size:9px; + } + +.jap { + font-smooth: auto !important; + -webkit-font-smoothing : auto !important; + + } + +.iconA { + background-image:url(favicon_16px.gif); + background-repeat:no-repeat; + height:16px; + width:16px; + margin-left:auto; + margin-right:auto; + margin-bottom:10px; + + } + + + + +.del1s { + animation: blink 2s linear infinite; + animation-delay: 0s; + letter-spacing:0px + + } + +.del1s5ms { + animation: blink 2s linear infinite; + animation-delay: 0.4s; + letter-spacing:0px + + } + +.del2s { + animation: blink 2s linear infinite; + animation-delay: 0.8s; + letter-spacing:0px + + } + + +.del4s { + animation: blink 2s linear infinite; + animation-delay: 1.2s; + letter-spacing:0px + + } + +.del5s { + animation: blink 2s linear infinite; + animation-delay: 1.6s; + letter-spacing:0px + + } + +.del6s { + animation: blink 2s linear infinite; + animation-delay: 2s; + letter-spacing:0px + + } + +.blink { + animation: blink 2s linear infinite; +} + +.Bfast { + animation: blink 2s ease-out infinite; + + } + +.wiredAnim { + animation: wiredB 2s ease-in-out infinite; + } + +.wdel1s { + animation: wiredB 2s ease-in-out infinite; + animation-delay: 0.4s; + } + +.wdel2s { + animation: wiredB 2s ease-in-out infinite; + animation-delay: 0.8s; + } + +.wdel3s { + animation: wiredB 2s ease-in-out infinite; + animation-delay: 1.2s; + } + +@keyframes blink { + 50% { + color:black; + } + } + + @keyframes wiredB { + 50% { + color:#d2738a; + text-shadow:#d2738a 1px 4px 5px; + } + } + + @keyframes wiredB2 { + 50% { + color:#c1b492; + text-shadow:#c1b492 1px 1px 6px; + } + }
\ No newline at end of file |