published 1717749901 updated 1717991868
Category: Web, HTML, Tech
View Blog View Profile Report Blog Entry
idk how to change the color of these
0 Kudos
Displaying 2 of 2 comments ( View all | Add Comment )
Rudecry
1717753926
A simpler way to do it.:root { --logo-blue: #color; --darker-blue: #color; --lighter-blue: #color; --even-lighter-blue: #color; --lightest-blue: #color; --dark-orange: #color; --light-orange: #color; --even-lighter-orange: #color; --green: #color; }
Report Comment
THANK YOU
by mel; 1717797552; Report
Alecu/Al⚝
1717752099
.contact .inner { border: double #FFFFFF 4px; background: (0,0,0,0%);}.mood { margin-top: 10px; margin-bottom: 3px; border: double #FFFFFF 4px; padding-left: 10px; padding-top: 5px; background: (0,0,0,30%);}.profile .left .table-section .inner { border: double #FFFFFF 4px; padding-left: 7px; padding-bottom: 5px; padding-top: 5px; background: (0,0,0,30%);instead of #FFFFFF insert your color
Comments
Displaying 2 of 2 comments ( View all | Add Comment )
Rudecry
A simpler way to do it.
:root {
--logo-blue: #color;
--darker-blue: #color;
--lighter-blue: #color;
--even-lighter-blue: #color;
--lightest-blue: #color;
--dark-orange: #color;
--light-orange: #color;
--even-lighter-orange: #color;
--green: #color;
}
Report Comment
THANK YOU
by mel; ; Report
Alecu/Al⚝
.contact .inner {
border: double #FFFFFF 4px;
background: (0,0,0,0%);
}
.mood {
margin-top: 10px;
margin-bottom: 3px;
border: double #FFFFFF 4px;
padding-left: 10px;
padding-top: 5px;
background: (0,0,0,30%);
}
.profile .left .table-section .inner {
border: double #FFFFFF 4px;
padding-left: 7px;
padding-bottom: 5px;
padding-top: 5px;
background: (0,0,0,30%);
instead of #FFFFFF insert your color
Report Comment