-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
126 lines (109 loc) · 2.46 KB
/
main.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
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
.container{
height: 100%;
width: 100%;
}
.contents{
padding-bottom: 3em;
}
#navigation{
width: 100%;
background: url(ghoul1.jpg) no-repeat scroll center center / cover transparent;
color: black;
height: 450px;border-bottom: 2px solid #9AA5AD;
}
#navigation #top_navigation{
width: 70%;
margin: auto;
padding-top: 25px;
}
#top_navigation li, #top_navigation li a{
display: inline;
text-decoration: none;
color: rgba(40, 40, 40, 0.72);
font-size: 0.8em;
margin: 0px 5px;
}
#top_navigation .reg_login{
float: right;
margin-right: 5px;
color: rgba(255, 255, 255, 0.85);
font-size: 0.9em;
border: 2px solid #FFF;
border-radius: 3px;
padding: 8px 13px;
background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.26);
margin-top: -9px;
}
#top_navigation .reg_login:hover{
background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.52);
}
.register_field{
background: none repeat scroll 0% 0% #ECECEC;
width: 100%;
padding: 50px 0px;
}
.register_field .reg_form h2{
text-align: center;
color: #022F70;
}
.reg_form input:first-of-type {
border-radius: 2px 0px 0px 2px;
}
.reg_form input {
border-width: medium medium medium 2px;
border-style: none none none solid;
border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgba(60, 145, 202, 0.55);
border-image: none;
width: 20%;
border-radius: 0px;
font-size: 1.02em;
padding: 9px;
display: inline-block;
float: left;
margin-top: 10px;
outline: medium none;
}
input[type="submit"], button[type="submit"] {
border-radius: 2px;
background-color: #3498DB;
border: medium none;
color: #FFF;
outline: medium none;
padding: 8px;
}
.reg_form input[type="submit"] {
border-left: 2px solid #2980BA;
border-radius: 0px 2px 2px 0px;
}
.form{
width: 80%;margin: auto;margin-left: 230px;height: 20px;
}.error{
width: 100%;text-align: center;padding-top: 15px;color: red;font-size: 12px;
}
/*
Only the footer codes are down there
*/
#footer{
background-color: #161616;
border-top: 2px solid #9AA5AD;
height: 48px;
text-align: right;
position: absolute;
left: 0;
margin-bottom: 0;
margin-top: -48px;
width: 100%;
}
#footer a{
padding-right: 5px;
text-decoration: none;
font-family: monospace;
font-size: 0.8em;
color: #FFF;
}
#footer a:hover{
color: #4364DA;
}
.footer{
width: 80%;
}