سمة CSS لزر الموضوع الجديد؟

آخر سؤال لي عن CSS، أقسم. معظم موقعي مخصص عبر CSS، لكنني لا أستطيع معرفة كود CSS لتغيير لون زر إنشاء موضوع جديد (في حالتي التحويم والعادية).

ربما يمكنك تغييره في إعدادات المسؤول مع عناصر واجهة المستخدم الأخرى عبر مخطط الألوان، لكنني أبحث عن سمة CSS المحددة.

شكرًا لك!
جين

إعجاب واحد (1)

Well the id on the button is create-topic (which since it’s an id you reference as #create-topic), and you use :hover to only apply something on hover. To change the button color you want to use background-color (if you want to change the text you’d use color).

So for example:

#create-topic {
    background-color: red;
}

#create-topic:hover {
    background-color: blue;
}
4 إعجابات