-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
135 lines (124 loc) · 2.84 KB
/
style.css
File metadata and controls
135 lines (124 loc) · 2.84 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
@charset "utf-8";
/* CSS Document */
body {
background:url("wallpaper/paladin.jpg");
background-repeat: no-repeat;
background-size:cover;
color:#FFF;padding-top:150px;font-family:Verdana;
text-align:center;
}
</style>
.form-group {
margin-top:15px;
margin-bottom:15px;
float:center;
text-align:center;
}
.form-control {
float:center;
text-align:center;
margin:auto;
}
.labels {
float:left;
text-align:left;
}
.clicker {
border:1px solid #1f1f1f;
background: #DC143C;
background: -moz-linear-gradient(top, #DC143C 0%, #404040 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#DC143C), color-stop(100%,#404040));
background: -webkit-linear-gradient(top, #DC143C 0%,#404040 100%);
background: -o-linear-gradient(top, #DC143C 0%,#404040 100%);
background: -ms-linear-gradient(top, #DC143C 0%,#404040 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#DC143C', endColorstr='#404040f',GradientType=0 );
background: linear-gradient(top, #DC143C 0%,#404040 100%);
-moz-border-radius: 5px;
border-radius: 5px;
min-height:15px;
min-width:25px;
text-align:center;
color:#FFF;
font-size:11px;
font-weight:bold;
cursor:pointer;
width:145px;
height:30px;
}
.wrapper {
width:398px;
height:330px;
min-height:105px;
max-height:auto;
margin-left:auto;
margin-right:auto;
margin-top:auto;
background:#262626;
opacity:0.85;
filter:alpha(opacity=40);
-moz-border-radius: 5px;
border-radius: 5px;
}
.footer {
width:998px;
height:100px;
min-height:105px;
max-height:auto;
margin-left:auto;
margin-right:auto;
margin-top:300px;
background:#262626;
opacity:0.65;
filter:alpha(opacity=40);
-moz-border-radius: 5px;
border-radius: 5px;
}
.clicker:hover {
border:1px solid #2f2f2f;
background: #515151;
background: -moz-linear-gradient(top, #515151 0%, #2f2f2f 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#515151), color-stop(100%,#2f2f2f));
background: -webkit-linear-gradient(top, #515151 0%,#2f2f2f 100%);
background: -o-linear-gradient(top, #515151 0%,#2f2f2f 100%);
background: -ms-linear-gradient(top, #515151 0%,#2f2f2f 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#515151', endColorstr='#2f2f2f',GradientType=0 );
background: linear-gradient(top, #515151 0%,#2f2f2f 100%);
-moz-border-radius: 5px;
border-radius: 5px;
min-height:15px;
min-width:25px;
text-align:center;
color:#FFF;
font-size:11px;
font-weight:bold;
cursor:pointer;
width:145px;
height:30px;
}
input {
background: #373940;
border: solid 1px #595c66;
-moz-border-radius: 5px;
border-radius: 5px;
color: #ffffff;
width: auto;
text-align:center;
float:center;
margin:auto;
}
a:link {
color:#DC143C;
text-decoration: none;
}
a:visited {
text-decoration: none;
color:#DC143C;
}
a:hover {
text-decoration: none;
color:#FFF;
}
a:active {
text-decoration: none;
color:#DC143C;
}