-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhw8.css
120 lines (102 loc) · 1.91 KB
/
hw8.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
html,
body {
margin: 0;
padding: 0;
display: table;
font-family: ariel;
width: 100%;
height: 100%;
margin-left: auto;
margin-right: auto;
font-family: Helvetica, sans-serif;
}
.container {
display: table-cell;
text-align: center;
}
#searchText {
padding-left: 0;
padding-right: 0;
display: inline;
padding-left: 10px;
}
#searchFB {
padding-top: 5px;
padding-bottom: 5px;
margin-bottom: 5px;
margin-top: 5px;
}
#fbSearchText {
padding-top: 5px;
font-size: large;
}
.nav-justified > li > .active {
background-color: #3b5998;
color: white;
}
.nav-justified > li > .active:hover {
background-color: #3b5998;
}
#previous,
#next {
display: none;
}
.animate-hide {
-webkit-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
-moz-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
-o-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
line-height: 20px;
opacity: 1;
padding: 10px;
border: 1px solid black;
background: white;
position: absolute;
left: 0;
}
.animate-hide1.ng-hide {
left: -100%;
opacity: 0;
padding: 0 10px;
}
.animate-hide2.ng-hide {
left: 100%;
opacity: 0;
padding: 0 10px;
}
a {
color: black;
text-decoration: none;
}
#search_width {
width: 78px;
background-color: #3b5998;
}
@media (max-width: 767px) {
#search_width {
width: 39px;
background-color: #3b5998;
}
}
#reset_button {
padding-left: 16px;
}
#myTabs {
padding-left: 0;
padding-right: 0;
border-bottom: 2px solid #3b5998;
}
#next-prev-btn {
text-align: center;
}
#overallTable {
display: inline-block;
width: 100%;
border: none
}
#progressBar {
margin-top: 200px;
margin-left: 20px;
margin-right: 20px;
text-align: center;
}