forked from indymedia/epicyon
Image corners style
parent
d523a6354d
commit
33657bf6b7
|
@ -39,6 +39,7 @@
|
||||||
--button-height: 10px;
|
--button-height: 10px;
|
||||||
--button-height-padding-mobile: 20px;
|
--button-height-padding-mobile: 20px;
|
||||||
--button-height-padding: 10px;
|
--button-height-padding: 10px;
|
||||||
|
--image-corners: 10%,
|
||||||
--gallery-border: #ccc;
|
--gallery-border: #ccc;
|
||||||
--gallery-hover: #777;
|
--gallery-hover: #777;
|
||||||
--gallery-text-color: #ccc;
|
--gallery-text-color: #ccc;
|
||||||
|
@ -723,7 +724,7 @@ div.gallery img {
|
||||||
width: 5%;
|
width: 5%;
|
||||||
padding: 0px 7px;
|
padding: 0px 7px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
border-radius: 10%;
|
border-radius: var(--image-corners);
|
||||||
}
|
}
|
||||||
.container img.emojisearch {
|
.container img.emojisearch {
|
||||||
width: 10%;
|
width: 10%;
|
||||||
|
@ -1074,7 +1075,7 @@ div.gallery img {
|
||||||
width: 15%;
|
width: 15%;
|
||||||
padding: 0px 7px;
|
padding: 0px 7px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
border-radius: 10%;
|
border-radius: var(--image-corners);
|
||||||
}
|
}
|
||||||
.container img.emojisearch {
|
.container img.emojisearch {
|
||||||
width: 12%;
|
width: 12%;
|
||||||
|
|
4
theme.py
4
theme.py
|
@ -270,6 +270,7 @@ def setThemeStarlight(baseDir: str):
|
||||||
"cw-glow-color5": "#a3d5f0",
|
"cw-glow-color5": "#a3d5f0",
|
||||||
"cw-background": "black",
|
"cw-background": "black",
|
||||||
"timeline-border-radius": "20px",
|
"timeline-border-radius": "20px",
|
||||||
|
"image-corners": "2%"
|
||||||
"*font-family": "'bgrove'",
|
"*font-family": "'bgrove'",
|
||||||
"*src": "url('fonts/bgrove.ttf') format('truetype')"
|
"*src": "url('fonts/bgrove.ttf') format('truetype')"
|
||||||
}
|
}
|
||||||
|
@ -454,7 +455,8 @@ def setThemeHacker(baseDir: str):
|
||||||
"event-foreground": "black",
|
"event-foreground": "black",
|
||||||
"title-text": "black",
|
"title-text": "black",
|
||||||
"title-background": "darkgreen",
|
"title-background": "darkgreen",
|
||||||
"gallery-text-color": "green"
|
"gallery-text-color": "green",
|
||||||
|
"image-corners": "0%"
|
||||||
}
|
}
|
||||||
setThemeFromDict(baseDir, 'hacker', themeParams)
|
setThemeFromDict(baseDir, 'hacker', themeParams)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue