-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (86 loc) · 1.66 KB
/
style.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
html {
height: 100%;
-webkit-user-select: none;
user-select: none;
}
#bg {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
}
#bg img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index:5;
margin: auto;
min-width: 50%;
min-height: 50%;
}
#main{
margin: 0 auto;
text-align: center;
width: 75vw;
max-width: 720px;
margin-top: 25vh;
padding-bottom: 5vh;
}
.credit{
position: fixed;
background:dimgray;
opacity: 0.75;
width:101%;
margin-left: -8px;
bottom:0;
font-size: 10px;
color: black;
text-align: center;
}
.credit a:link, a:visited, a:active, a:hover{
color: black
}
.button{
z-index:1;
position: relative;
border-top: 5px solid #888888;
border-left: 5px solid #999999;
border-right: 5px solid #555555;
border-bottom: 5px solid #666666;
background-color: darkgray;
display: inline-block;
text-align: center;
padding: 20px;
margin: -2px;
opacity: 0.75;
-moz-transition: background-color 1s;
-webkit-transition: background-color 1s;
-o-transition: background-color 1s;
}
.button p{
border-top: 2px black;
margin: 16px;
clear: both;
text-align: center;
opacity: 1;
text
}
.button a:link, a:visited, a:active, a:hover{
text-decoration: none;
color:black;
}
.button:hover{
background-color: #777777;
-moz-transition: background-color 0.33s;
-webkit-transition: background-color 0.33s;
-o-transition: background-color 0.33s;
}
.button:active{
background-color: white;
-moz-transition: background-color 0.11s;
-webkit-transition: background-color 0.11s;
-o-transition: background-color 0.11s;
}