Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End PHP/CSS Style switcher issues & more Reply To: PHP/CSS Style switcher issues & more

#240573
I.m.learning
Participant

[MOD EDIT]..snip

.btn-custom {
background-color: hsl(120, 100%, 15%);
color: hsl(120, 100%, 50%);
font-weight: bold;
border-color: #000;
border-width:3px;
}
.btn-custom1 {
background-color: hsl(240, 100%, 15%);
color: hsl(195, 100%, 50%);
font-weight: bold;
border-color: #000;
border-width:3px;
}
.btn-custom2 {
background-color: hsl(0, 100%, 15%);
color: hsl(0, 100%, 87%);
font-weight: bold;
border-color: #000;
border-width:3px;
}

.default {
background-color: white;
color: black;
border: 3px solid gray;
}
.green {
background-color: white;
color: black;
border: 3px solid #008000;
}
.blue {
background-color: white;
color: black;
border: 3px solid #0000ff;
}
.red {
background-color: white;
color: black;
border: 3px solid #ff0000;
}

.fontsize{width:auto;}

.default:hover {
background-image: url(“../img/index.jpg”);
color: white;
}

.s12 {
font: 12pt Times New Roman;
background-color: white;
color: black;
border: 3px solid #000000;
width: auto;
height:auto;
}
.s14 {
font: 14pt Times New Roman;
background-color: white;
color: black;
border: 3px solid #000000;
width: auto;
height:auto;
}
snip