-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
164 lines (139 loc) · 2.05 KB
/
style.css
File metadata and controls
164 lines (139 loc) · 2.05 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
body{
margin: 40px;
font-family: arial, sans-serif;
}
/*
The style is CSS Grid system
The wrapper could be divided as layout based on 960px (320 , 640) or rule of third
*/
.wrapper {
display: grid;
grid-gap: 15px;
grid-template-columns: 320px 320px 320px;
grid-template-areas:
"header header header"
"sidebar content content"
"footer footer footer";
}
.box {
background-color: #444;
color: #fff;
}
.sidebar {
grid-area: sidebar;
}
.content {
grid-area: content;
}
.header {
grid-area: header;
}
.footer{
grid-area:footer;
}
/* SideBar */
form #content{
border-style: solid;
border-color: #caccce;
border-width: 2px;
}
h1{
text-indent: 20px;
}
#leftList {
display: inline;
}
#RightList{
display: inline;
text-align: right;
}
#RightRow{
align-items: right;
}
.wrapper h3{
text-align: center;
}
form .content {
display: table;
border-width: 2px;
}
p{
display: table-row;
}
label,input{
display: table-cell;
}
#form{
padding: 40px;
width: 100%;
height: 100%;
clear: both;
}
#submit{
margin-top: 20px;
border-color: #caccce;
border-width: 2px;
border-radius: 10px;
}
#submit:hover{
background: #6a6b6d;
transition: all 0.5s;
opacity: 0.7;
filter:alpha(opacity=70);/* IE8 earlier */
}
.input{
padding-bottom: 10px;
margin-left:20px;
margin-top:10px;
opacity: 0.7;
}
/*
Content
*/
ul {
display: table-row;
}
li{
display: table-row;
}
#select{
width: 100%;
height: 100px;
margin-bottom:10px
}
#select_wrapper{
height: 20px;
width: 460px;
background:grey;
margin-left: auto;
margin-right: auto;
opacity: 0.7;
filter:alpha(opacity=70);/* IE8 earlier */
}
#select_wrapper ul h4{
display: inline;
}
#select_wrapper ul li{
list-style: none;
display: inline;
font-weight: bold;
padding: 5px;
}
#select_wrapper ul{
margin-top: 5px;
}
#select_wrapper a{
text-decoration: none;
color: #babbbc;
margin-top: 20px;
}
#nav_wrapper ul li a:hover{
background: #FA0838;
color: white;
transition: all 0.5s;
opacity: 0.7;
filter:alpha(opacity=70);/* IE8 earlier */
}
#copyRight{
text-align: center;
}