66 lines
942 B
CSS
66 lines
942 B
CSS
body {
|
|
-webkit-app-region: no-drag;
|
|
color: #74b1be;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
h4 {
|
|
padding: 0;
|
|
margin: 0;
|
|
margin-bottom: 10px;
|
|
}
|
|
.content {
|
|
padding-left: 20.5%;
|
|
padding-right: 20.5%;
|
|
padding-top: 5%;
|
|
}
|
|
|
|
.titlebar {
|
|
-webkit-user-select: none;
|
|
-webkit-app-region: drag;
|
|
padding: 5px;
|
|
height: 30px;
|
|
}
|
|
|
|
.download {
|
|
border: none;
|
|
background-color: #74b1be;
|
|
color: white;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
width: 90%;
|
|
font-size: 15px;
|
|
height: 33px;
|
|
}
|
|
|
|
.row {
|
|
width: 100%;
|
|
display: flex;
|
|
}
|
|
|
|
.col-6 {
|
|
width: 50%;
|
|
}
|
|
|
|
#myProgress {
|
|
width: 100%;
|
|
border-radius: 5px;
|
|
border: 1px solid #74b1be;
|
|
}
|
|
|
|
#myBar {
|
|
width: 100%;
|
|
height: 33px;
|
|
border-radius: 5px;
|
|
background-color: #74b1be;
|
|
}
|
|
|
|
#progress-label {
|
|
position: absolute;
|
|
color: white;
|
|
padding: 1.5%;
|
|
} |