aboutsummaryrefslogtreecommitdiff
path: root/static/style.css
blob: 3030424a8ef046150f261c0e9675aba29711c09f (plain)
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
#cy {
	width: 80%;
	height: 90%;
	position: absolute;
	left: 0px;
}

@media (min-width: 768px){
  .container{
    max-width:90%;
  }
}

@media (min-width: 992px){
  .container{
    max-width:90%;
  }
}

a:link {
    color: #097DC9;
}

/* A link that has been visited */
a:visited {
    color: #097DC9;
}

/* A link that is hovered on */
a:hover {
    color: #097DC9;
}

/* A link that is selected */
a:active {
    color: #097DC9;
}

* {
  box-sizing: border-box;
}

.column {
  float: left;
}

.left {
  width: 80%;
}

.right {
  width: 20%;
}

#searchform{
  background:#EBF5FB;
  padding-top: 0;
  padding-left: 0;

}

.loginout {
  color: black
}

.inval {
  font-size: 1.3rem;
  font-weight: 80;
  color:red
}

ul {
  margin-left:40px;
}

.main { 
  min-height: 70vh;
  padding-bottom: 100px;
}

.navbar {
  background-color: #336699;
  border-color: #080808;
}

body 
{
}

.footer {
     color: black;
     background-color: #f5f5f5;
     border-color: #080808;
     font-size: small;
     padding: 3px 0;
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
}

.footer a {
     text-decoration: none;
     transition: color 0.3s ease;
     color: #1e87f0;
     cursor: pointer;
}

.footer a:hover {
     color: #adb5bd;
}