-
Notifications
You must be signed in to change notification settings - Fork 0
/
StyleSheet.css
63 lines (56 loc) · 1.51 KB
/
StyleSheet.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
html{
height:100%;
min-height:100%;
}
body {
background: url('back.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')";
font-family: 'Open Sans',sans-serif;
font-size: 18px;
line-height: 1.428571429;
height:100%;
min-height:100%;
vertical-align:middle;
color:white
}
body::after{
position:absolute; width:0; height:0; overflow:hidden; z-index:-1;
content:url('back.jpg');
}
div#preload { display: none; }
.box {
padding:15px;
max-width:900px;
height:40%;
margin: 0 auto;
margin-top:10%;
background-color:rgba(0,0,0,0.4);
text-align:center;
}
#title {
width:100%;
height:50px;
}
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin:5px;
width:150px
}
.button1 {background-color: #4CAF50;} /* Green */
.button2 {background-color: #008CBA;} /* Blue */
.button3 {background-color: #f44336;} /* Red */
.button4 {background-color: #e7e7e7; color: black;} /* Gray */
.button5 {background-color: #555555;} /* Black */
.button6 {background-color: #1abc9c; color: black}