Skip to content

Commit 78d97af

Browse files
committed
initial commit
1 parent ad18f6b commit 78d97af

12 files changed

+27582
-0
lines changed

css/.Rhistory

Whitespace-only changes.

css/app.css

Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
*
2+
{
3+
margin:0px;
4+
padding:0px;
5+
}
6+
7+
#header
8+
{
9+
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
10+
background-color: #FAFAFA;
11+
background-image: linear-gradient(to bottom, #FFFFFF, #F2F2F2);
12+
border:1px solid #D4D4D4;
13+
overflow:hidden;
14+
line-height:60px;
15+
height:60px;
16+
margin-bottom:2px;
17+
}
18+
19+
#header > div
20+
{
21+
width:50%;
22+
float:left;
23+
text-align:center;
24+
}
25+
26+
#header > div:first-child
27+
{
28+
width:25%;
29+
}
30+
31+
#header > div:last-child
32+
{
33+
width:25%;
34+
}
35+
36+
#home-subtitle
37+
{
38+
font-size:17px;
39+
text-align:center;
40+
color:#1c6ebf;
41+
margin-bottom:20px;
42+
}
43+
44+
#home-subtitle span
45+
{
46+
color:#000;
47+
}
48+
49+
.home-title
50+
{
51+
line-height:36px;
52+
font-size:36px;
53+
font-weight:bold;
54+
text-align:center;
55+
margin:20px 0px;
56+
}
57+
58+
.continer-section
59+
{
60+
margin:10px;
61+
}
62+
63+
#loading-page
64+
{
65+
width:100%;
66+
position:absolute;
67+
background-color:rgba(0,0,0,0.5);
68+
text-align:center;
69+
display:none;
70+
}
71+
72+
#loading-page img
73+
{
74+
width:20%;
75+
height:20%;
76+
position:fixed;
77+
top:40%;
78+
left:40%;
79+
}
80+
81+
#page-content
82+
{
83+
padding: 10px;
84+
}
85+
86+
#search-result > div,.page
87+
{
88+
display:none;
89+
}
90+
91+
#search,#login-form
92+
{
93+
border-radius:5px;
94+
padding: 4px 10px;
95+
color:#fff;
96+
}
97+
98+
#search input[type="text"],#login-page input[type="text"],#login-page input[type="password"]
99+
{
100+
padding:6px 2%;
101+
}
102+
103+
#search input[type="text"],#login-page input[type="text"],#login-page input[type="password"]
104+
{
105+
width:96%;
106+
}
107+
108+
#search > div,#login-page div
109+
{
110+
margin:5px 0;
111+
}
112+
113+
#search select
114+
{
115+
width:100%;
116+
height:28px;
117+
}
118+
119+
#search div:first-child
120+
{
121+
overflow:hidden;
122+
}
123+
124+
#search div:first-child > div
125+
{
126+
width:50%;
127+
float:left;
128+
height:25px;
129+
line-height:25px;
130+
}
131+
132+
#search div:last-child,.continer-section > div:last-child,#login-page div:last-child
133+
{
134+
text-align:center;
135+
}
136+
137+
.short-list > table > tbody > tr:nth-of-type(n+7)
138+
{
139+
display: none;
140+
}
141+
142+
.list-continer table > tbody > tr > td:first-child
143+
{
144+
color:#1c6ebf;
145+
}
146+
147+
.list-continer table > tbody > tr > td
148+
{
149+
color:#008000;
150+
font-weight:bold;
151+
}
152+
153+
.list-continer button,.continer-section > div:last-child > button,#search button,#login-btn,#auth-btn
154+
{
155+
font-weight:bold;
156+
color:#fff;
157+
border:none;
158+
border-radius:3px;
159+
}
160+
161+
.list-continer button,#search button,#auth-btn
162+
{
163+
background-color:#1c6ebf;
164+
}
165+
166+
.continer-section > div:last-child > button,#search,#login-form,#login-btn
167+
{
168+
background-color:#f58220;
169+
}
170+
171+
.list-continer button,.continer-section > div:last-child > button,#search button,#login-btn,#auth-btn
172+
{
173+
padding:3px 30px;
174+
}

0 commit comments

Comments
 (0)