♱ gray / nick
diavologray
━ he / him > they / it
7teen ukr / eng = ok !!
mentally ill queer man
This user
Report
♱ ask me anything! ♱
♱ ASK GAME ♱
001. ﹢ random meme
002. ﹢ random fact abt me
003. ﹢ random my fav song
004. ﹢ fav character
005. ﹢ interest
006. ﹢ draw random doodle on paint
007. ﹢ your choice (you ask whatever)
♱ NAVIGATION ♱
#code help
Could I also ask for how you made the gradient map color thingy for buttons..
ofc!
FEED/POST/QUESTION BUTTONS
a.active{ background: linear-gradient(180deg, rgba(19,19,19,1) 0%, rgba(125,32,34,1) 50%, rgba(181,181,181,1) 100%) !important; font-weight: bold; color: #EBEAEA !important; padding: 5px; }
ASK BUTTON
.response .card:first-child { background: linear-gradient(180deg, rgba(19,19,19,1) 0%, rgba(125,32,34,1) 50%, rgba(181,181,181,1) 100%) ; color: #EBEAEA !important; border-radius: 15px !important; }
CODE FOR THE OTHER BUTTONS.
just a heads-up: it affects almost all elements on the page, so be careful with it.:root, * { --color-primary: linear-gradient(180deg, rgba(19,19,19,1) 0%, rgba(125,32,34,1) 50%, rgba(181,181,181,1) 100%) !important; border-radius: 15px!important; }
how you see i used primarily linear-gradient function, and background property
i also used that gradient generator to make work easier
hii! Could I ask how you do the custom borders in ur page? For example, the questions/answers box thingy ..
hi! i used that code:
#profile_card, #question_box, div.inner.shadow-md, textarea, .card-nest.w-full.shadow { border-width: 15px; border-style: solid; border-image: url(your own link) 35 fill round; }
change
your own link
on any border img. personally for that i used these rentries: 1 , 2
you can also change the numbers (15 px, 35
) as needed