SigPlace/out/sig.css

92 lines
2.0 KiB
CSS
Raw Normal View History

.generateTime{
font-size:10px;
color:blue;
2022-05-02 21:03:16 -05:00
}
.codeForeground{
font-family:'Courier New', Courier, monospace;
position:absolute;
2022-05-03 14:58:01 +00:00
left:-12px;
top:-8px;
2022-05-02 21:03:16 -05:00
z-index:-4999;
color:rgba(0,0,0,0);
background: linear-gradient(90deg, rgba(17,17,17,1) 0%, rgba(17,17,17,1) 42%, rgba(17,17,17,0.6825105042016807) 44%, rgba(17,17,17,1) 46%, rgba(17,17,17,1) 100%);
background-size:300% 100%;
user-select:none;
animation-name:backgroundMove;
animation-duration:15s;
animation-iteration-count: infinite;
font-size:32px;
overflow:hidden;
max-width:98vw;
max-height:90vh;
}
.codeBackground{
font-family:'Courier New', Courier, monospace;
position:absolute;
2022-05-03 14:58:01 +00:00
left:-12px;
top:-8px;
2022-05-02 21:03:16 -05:00
color:#44FF44;
z-index:-5000;
user-select:none;
font-size:32px;
overflow:hidden;
max-width:98vw;
max-height:90vh;
}
@keyframes backgroundMove{
0%{
background-position: 0% 50%;
}
100%{
background-position: 100% 50%;
}
}
body{
2022-05-03 14:58:01 +00:00
font-family: Garamond, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
2022-05-02 21:03:16 -05:00
background-color:#111;
}
2022-05-03 14:58:01 +00:00
.contentBody{
backdrop-filter: blur(7px);
color: #AA77FF;
font-weight:900;
text-shadow: 0.3px 0.3px 3px #666666;
}
2022-05-03 15:34:33 +00:00
.contentBody h1{
2022-05-03 14:58:01 +00:00
display: inline-block;
2022-05-03 15:34:33 +00:00
font-size:3.25em;
margin: 12px 4px 0px 4px;
padding: 12px 32px 0px 32px;
2022-05-03 14:58:01 +00:00
border-bottom-style: outset;
2022-05-03 15:34:33 +00:00
border-radius:32px 32px 0px 0px;
background-color:rgba(255, 255, 255, .06);
2022-05-03 14:58:01 +00:00
}
.contentBody .content{
display: inline-block;
2022-05-03 15:34:33 +00:00
min-width:98vw;
font-size:1.25em;
margin: 0px 4px 8px 4px;
padding: 4px;
background-color: rgba(255, 255, 255, .06);
}
.contentBody .date{
display: inline-block;
font-size:0.75em;
background-color: rgba(255, 255, 255, .06);
2022-05-03 14:58:01 +00:00
border-style: none outset outset none;
2022-05-03 15:34:33 +00:00
border-radius: 0px 0px 12px 0px;
2022-05-03 14:58:01 +00:00
border-color: rgb(17, 153, 17, .3);
border-width: 3px;
}
2022-05-03 15:34:33 +00:00
.contentBody .date:hover{
2022-05-03 14:58:01 +00:00
border-color: rgb(17, 153, 17, .8);
}