8,794
edits
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
# | /* Version */ | ||
.personal-version { | |||
text-align: left; | |||
cursor: pointer; /* Указатель при наведении */ | |||
margin-right: 20px; /* Можно отрегулировать для отступа от других элементов */ | |||
display: inline-block; | |||
color: #fff; | |||
} | |||
.personal-version:hover { | |||
text-decoration: underline dotted; /* Подчеркивание точками при наведении */ | |||
} | |||
.personal-version:hover::after { | |||
content: "Version October 2024"; | |||
position: absolute; | |||
top: -20px; | |||
right: 0; | |||
background-color: white; | |||
border: 1px solid black; | |||
padding: 2px 8px; | |||
border-radius: 4px; | |||
white-space: nowrap; | |||
box-shadow: 0 0 5px rgba(0,0,0,0.3); | |||
} | } | ||