51 lines
922 B
CSS
51 lines
922 B
CSS
/*
|
|
.rgba-gradient {
|
|
background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9) 100%);
|
|
background: -webkit-gradient(linear, 45deg, from(rgba(0, 0, 0, 0.7), rgba(42, 42, 42, 0.4) 100%)));
|
|
background: linear-gradient(to 45deg, rgba(0, 0, 0, 0.7), rgba(72, 15, 144, 0.4) 100%);
|
|
}
|
|
*/
|
|
|
|
.rgba-gradient {
|
|
background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7) 100%);
|
|
}
|
|
|
|
.rgba-gradient:hover {
|
|
background: -webkit-linear-gradient(45deg, rgba(40, 30, 0, 0.6), rgba(127, 108, 0, 0.3) 100%);
|
|
}
|
|
|
|
.card {
|
|
background-color: rgba(42, 42, 42, 0.2);
|
|
}
|
|
|
|
.md-form label {
|
|
color: #ffffff;
|
|
}
|
|
|
|
h6 {
|
|
line-height: 1.7;
|
|
}
|
|
|
|
label {
|
|
color: #000000;
|
|
}
|
|
|
|
input {
|
|
color: #000000;
|
|
}
|
|
|
|
.black-background {background-color:#ffffff;}
|
|
.white {color:#ffffff;}
|
|
.black {color:#000000;}
|
|
|
|
|
|
.about white {
|
|
color: white;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.a {
|
|
text-decoration:none;
|
|
color:red;
|
|
}
|