Skip to content

Commit 9425169

Browse files
committed
Add comments to CSS styles file
1 parent 3e01ace commit 9425169

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

static/css/index.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,37 @@
11
* {
22
/*global styles*/
3-
font-family: system-ui, Arial, Helvetica, sans-serif;
4-
line-height: 125%;
3+
font-family:
4+
system-ui, Arial, Helvetica, sans-serif; /*set default font to system-based font*/
5+
line-height: 125%; /*set default line height to 125%*/
56
}
67
progress {
8+
/*progress element styles*/
79
height: 50px;
810
padding: 5px;
911
max-width: 300px;
1012
width: 100%;
1113
accent-color: #4888c8;
1214
}
1315
.progress-container {
16+
/*progress container styles*/
1417
position: relative;
1518
width: 100%;
1619
max-width: 300px;
1720
}
1821
.progress-bar {
22+
/*progress bar styles*/
1923
width: 100%;
2024
}
2125
.progress-text {
26+
/*progress text styles*/
2227
position: absolute;
2328
width: 100%;
2429
text-align: center;
2530
top: 15px;
2631
color: black;
2732
}
2833
.popup-message {
34+
/*popup message styles*/
2935
position: absolute;
3036
top: 20px;
3137
right: 20px;
@@ -38,6 +44,7 @@ progress {
3844
}
3945

4046
.popup-message p {
47+
/*popup message paragraph styles*/
4148
font-size: 18px;
4249
font-weight: bold;
4350
color: #333;

0 commit comments

Comments
 (0)