-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·125 lines (100 loc) · 1.75 KB
/
style.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
body {
font-family: "Signika","Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;
background: #F7F7F7;
/* padding-top: 150px; */
}
a.toggle-vis {
cursor: pointer;
color: #3174c7;
text-decoration: none;
}
div#filter_columns {
margin: 0 0 20px 0;
}
a.toggle-vis.inactive {
color: dimgrey;
}
a.toggle-vis:after {
content: " - ";
}
a.toggle-vis:last-child:after {
content: "";
}
a:hover {
text-decoration: underline;
}
a.pull-left.date:hover {
text-decoration: none;
}
.menu-item {
cursor: pointer;
}
a.paginate_button {
cursor:pointer;
}
a.paginate_button.current {
color: white;
}
.btn-default{
color: #73879C;
}
td.cell-list span.cell-list-item:after {
content: ",";
}
td.cell-list span.cell-list-item:last-child:after {
content: "";
}
.container {
margin: 0 auto;
width: 100%;
}
.navbar-default {
background: #ffffff;
}
article > a.date {
margin-left: 5px;
}
/*Added by Uzair for harmonizng fonts and colorurs with DASH-IF website and styling the newly added pages (login page etc.)*/
body{
color:rgb(115, 135, 156);
font-family: "sans-serif";
}
/* ul{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
ul li{
float:left;
border:solid;
} */
#div_login_form{
text-align: center;
align-content: center;
margin-top: 15vmax;
padding:10px;
}
#input_email, #input_password{
width:25%;
padding:0.3%;
}
#button_login{
background-color: rgb(22, 159, 133);
color: white;
padding:0.3%;
width:25%;
border-radius: 10px;
}
#button_login:hover{
opacity:0.8;
}
#button_logout{
background-color: rgb(255, 0, 0);
color: white;
padding:0.3%;
width:10%;
border-radius: 10px;
float:right;
clear: right;
}