-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
18 lines (18 loc) · 994 Bytes
/
main.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
html {
background: rgba(255, 255, 255, 1);
background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%,
rgba(245, 245, 245, 1) 47%, rgba(209, 201, 209, 1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255,
255, 1)), color-stop(47%, rgba(245, 245, 245, 1)),
color-stop(100%, rgba(209, 201, 209, 1)));
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%,
rgba(245, 245, 245, 1) 47%, rgba(209, 201, 209, 1) 100%);
background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%,
rgba(245, 245, 245, 1) 47%, rgba(209, 201, 209, 1) 100%);
background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%,
rgba(245, 245, 245, 1) 47%, rgba(209, 201, 209, 1) 100%);
background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%,
rgba(245, 245, 245, 1) 47%, rgba(209, 201, 209, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff',
endColorstr='#d1c9d1', GradientType=0);
}