web-cfw-loader/style.css

48 lines
1.4 KiB
CSS
Raw Normal View History

2018-05-17 21:43:34 +00:00
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
2018-05-17 19:58:31 +00:00
body {
margin-top: 0px;
margin-left: 0px;
2018-05-18 02:13:39 +00:00
margin-right: auto;
2018-05-17 19:58:31 +00:00
text-align: center;
2018-05-17 21:43:09 +00:00
font-family: 'Open Sans', sans-serif;
2018-05-17 19:58:31 +00:00
}
2018-05-17 19:10:07 +00:00
#title {
2018-05-17 19:03:18 +00:00
text-align: center;
2018-05-18 04:49:02 +00:00
padding: 20px;
2018-05-17 19:03:18 +00:00
background-color: black;
2018-05-17 19:58:31 +00:00
background-image: url("https://icdn1.digitaltrends.com/image/nintendo-switch-review-photos-pdx-580.jpg");
2018-05-17 19:18:32 +00:00
color: white;
width: 100%;
margin-top: 0px;
top: 0px;
2018-05-17 18:50:32 +00:00
}
2018-05-17 22:04:39 +00:00
.btn {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 12;
-moz-border-radius: 12;
border-radius: 12px;
font-family: Arial;
color: #ffffff;
font-size: 23px;
padding: 12px 20px 10px 20px;
text-decoration: none;
}
.btn:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}