Files
web-view/examples/actix/css/styles.css
2019-09-25 15:16:18 +02:00

37 lines
538 B
CSS

#red-body {
background-color: red;
}
#green-body {
background-color: green;
}
#blue-body {
background-color: blue;
}
#index-body {
background: rgb(63,94,251);
background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
}
/*
* Following rules hide the button that corresponds
* to given page
*/
#red-body > .red {
visibility: hidden;
}
#green-body > .green {
visibility: hidden;
}
#blue-body > .blue {
visibility: hidden;
}
#index-body > .index {
visibility: hidden;
}