www/assets/css/extra_without_scss.css

42 lines
670 B
CSS
Raw Normal View History

2023-11-22 19:01:38 +03:00
.copy_element {
color: orange;
cursor: copy;
}
.copy_element:hover::before {
content: "Kopyala: ";
color: #00adb5;
font-weight: 400;
justify-self: center;
font-size: medium;
2023-11-24 23:47:05 +03:00
}
#pprogress {
background-color: black;
border-radius: 13px;
/* (height of inner div) / 2 + padding */
padding: 3px;
}
#pprogress>span {
background-color: orange;
width: 40%;
/* Adjust with JavaScript */
height: 20px;
border-radius: 10px;
}
#pprogress::-moz-progress-bar {
background: orange;
border-radius: 10px;
}
#pprogress::-webkit-progress-value {
background: orange;
border-radius: 10px;
}
#pprogress {
color: orange;
border-radius: 10px;
2023-11-22 19:01:38 +03:00
}