Adding CSS headers
parent
0f808db39a
commit
3d8e92789d
@ -0,0 +1,8 @@
|
||||
/* Blue gradient */
|
||||
#header {
|
||||
background: rgb(0,0,255);
|
||||
background: -moz-linear-gradient(90deg, rgba(0,0,255,1) 0%, rgba(0,0,0,1) 50%);
|
||||
background: -webkit-linear-gradient(90deg, rgba(0,0,255,1) 0%, rgba(0,0,0,1) 50%);
|
||||
background: linear-gradient(90deg, rgba(0,0,255,1) 0%, rgba(0,0,0,1) 50%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0000ff",endColorstr="#000000",GradientType=1);
|
||||
}
|
||||
@ -0,0 +1,8 @@
|
||||
/* Green gradient */
|
||||
#header {
|
||||
background: rgb(0,255,0);
|
||||
background: -moz-linear-gradient(90deg, rgba(0,255,0,1) 0%, rgba(0,0,0,1) 50%);
|
||||
background: -webkit-linear-gradient(90deg, rgba(0,255,0,1) 0%, rgba(0,0,0,1) 50%);
|
||||
background: linear-gradient(90deg, rgba(0,255,0,1) 0%, rgba(0,0,0,1) 50%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ff00",endColorstr="#000000",GradientType=1);
|
||||
}
|
||||
@ -0,0 +1,8 @@
|
||||
/* Blue gradient */
|
||||
#header {
|
||||
background: rgb(255,0,0);
|
||||
background: -moz-linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(0,0,0,1) 50%);
|
||||
background: -webkit-linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(0,0,0,1) 50%);
|
||||
background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(0,0,0,1) 50%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0000",endColorstr="#000000",GradientType=1);
|
||||
}
|
||||
Loading…
Reference in New Issue