Spaces:
Sleeping
Sleeping
File size: 2,193 Bytes
60f878e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | .drawnix-tutorial {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Noto Sans', 'Noto Sans CJK SC', 'Microsoft Yahei', 'Hiragino Sans GB', Arial, sans-serif;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
background-color: transparent;
p {
margin: 0;
font-size: 14px;
color: #888;
line-height: 1.5;
}
.tutorial-overlay {
position: absolute;
width: 100%;
height: 100%;
pointer-events: none;
display: flex;
justify-content: center;
align-items: center;
}
.tutorial-content {
position: relative;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.brand-title {
font-size: 72px;
font-weight: 400;
color: #333;
letter-spacing: 2px;
margin: 0;
margin-bottom: 25px;
}
.brand-description {
font-size: 18px;
color: #333;
text-align: center;
max-width: 600px;
line-height: 1.6;
font-style: italic;
margin-bottom: 25px;
}
.brand-tooltip {
color: #888;
text-align: center;
max-width: 600px;
line-height: 1.6;
margin-bottom: 40px;
}
.feature-pointer {
position: absolute;
}
.top-left {
position: absolute;
top: 100px;
left: 60px;
.pointer-content {
position: absolute;
top: 100px;
width: 100%;
text-align: center;
left: 20px;
}
}
.top-center {
top: 100px;
left: 50%;
width: 200px;
transform: translateX(-50%);
.pointer-content {
position: absolute;
width: 100%;
top: 50px;
left: 60px;
}
}
.bottom-right {
bottom: 70px;
right: 40px;
.pointer-content {
position: absolute;
top: -30px;
right: 80px;
width: 100%;
}
}
}
@media screen and (max-width: 768px){
.drawnix-tutorial {
.tutorial-content {
width: 95%;
height: 95%;
}
.feature-pointer {
display: none;
}
}
} |