mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-10-01 01:05:54 -04:00
27 lines
555 B
CSS
27 lines
555 B
CSS
|
.did-title {
|
||
|
font-family: sans-serif;
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
height: 200px;
|
||
|
text-align: center;
|
||
|
vertical-align: middle;
|
||
|
color: white;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.did-title .content{
|
||
|
z-index: 100;
|
||
|
position:absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
transform: translate(-50%,-50%);
|
||
|
text-shadow: 0px 0px 10px #222222, 0px 0px 20px #222222, 0px 0px 30px #222222, 0px 0px 8px #222222;
|
||
|
}
|
||
|
|
||
|
.did-title canvas{
|
||
|
position:absolute;
|
||
|
top: 0px;
|
||
|
left: 0px;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|