Page 1 of 1

Height of clock and sunrise bars

Posted: Friday 26 March 2021 9:17
by DeVille70
How can I adjust the height of the clock and sunrise bars?
Thanks.

Re: Height of clock and sunrise bars

Posted: Friday 26 March 2021 10:29
by Chris12
for the sunrise/sunset I use this in my custom.css to make it bigger and give the icons a different color.
Spoiler: show

Code: Select all

/* sunrise & sunset  */
.sunriseholder, .sunriseholder .wi { font-size: 20px !important;font-weight: bold !important; }
.sunriseholder .wi-sunrise {color: yellow !important;}
.sunriseholder .wi-sunset {padding-left: 40px !important; color: orange !important;}

Re: Height of clock and sunrise bars

Posted: Friday 26 March 2021 19:16
by DeVille70
Thanks.

Re: Height of clock and sunrise bars

Posted: Friday 26 March 2021 20:44
by DeVille70
Anyone who knows how I can increase the height of the clock bar?

Re: Height of clock and sunrise bars

Posted: Saturday 27 March 2021 8:36
by Chris12
For my standby screen I use:
Spoiler: show

Code: Select all

.standby .basicclock {
	display: flex !important;
	font-size: 20px;
	justify-content: center !important;
	align-items: center !important; 
	background-color: rgb(0,0,0) !important;
	height: 400px !important; 
}
So maybe without the ".standby" you can accomplish what you're looking for.

Re: Height of clock and sunrise bars

Posted: Saturday 27 March 2021 21:04
by DeVille70
Thanks again.