-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
124 lines (118 loc) · 2.39 KB
/
styles.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
/* Body */
body{
background-color: whitesmoke;
}
/* Navbar */
.navbar{
max-height: 57px;
}
.navigation .navbar-brand{
color: white;
margin-left: 30px;
padding: inherit;
font-weight: bold;
background-color: #0BADA6;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.navbar{
background-color: white;
font-size: 15px;
}
.active, .dropdown-menu .dropdown-item:active a:hover{
background-color:#E7E7E7!important;
}
.dropdown-item{
color: #6D8092 !important;
}
.dropdown .dropdown-menu .dropdown-item:active, .dropdown .dropdown-menu .dropdown-item:hover{
background-color:#E7E7E7 !important;
}
a{
color: #6D8092;
font-size: 15px;
}
.nav-link:hover{
background-color:#E7E7E7 !important;
}
.navbar-brand:hover{
color: rgb(175, 175, 175) !important;
}
/* Images */
img{
width:100% !important;
height:100% !important;
}
.active, .panel:hover{
border-color:#0BADA6;
border-style: solid;
}
.vizualization{
width:20% !important;
height:20% !important;
}
/* Title Class */
.title{
color: #0BADA6;
font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: bolder;
padding-top: 25px;
}
/* Paragraph Element */
p{
color: #6D8092;
font-family: Arial, Helvetica, sans-serif;
font-size: 17px;
}
/* Box Class */
.box {
margin-top: 60px;
margin-bottom: 62px;
padding: 10px 20px 15px;
color:black;
background-color: white;
}
/* Table */
.table{
font-size: 15px;
border-top-color: white !important;
}
footer{
background-color: #666666;
border-top-style: solid;
border-top-width: 5px;
border-top-color: #0BADA6;
color: white;
min-height: 55px;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
text-align: center;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
padding-top: 15px;
}
/* Media Queries */
@media(max-width: 992px){
.navbar-expand-lg{
background-color: #0BADA6 !important;
}
.navbar{
max-height: none;
padding: inherit;
}
.navbar div{
margin: inherit;
background-color: white;
}
.navbar-brand{
padding: 10px !important;
}
button{
margin-right: 30px;
}
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focusring-color;
}
}