aboutsummaryrefslogtreecommitdiffstats
path: root/static/style.css
blob: 66e58295382d7c1814a9b583888e205771e947c2 (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
body {
    font-family: Helvetica, sans-serif;
}

header {
    font-size: large;
    padding-left: 1%;
    /* font-weight: bold; */
}

header p {
    font-size: small;
}

a {
    color: black;
    font-weight: bold;
    padding-top: 1px;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

aside {
    width: 15%;
    padding-left: 15px;
    margin-left: 15px;
    float: right;
    /* border-left-color: rgb(189, 189, 189);
    border-left-width: 2px;
    border-left-style: groove; */
}

input[type=search] {
    padding: 3px 5px;
    box-sizing: border-box;
    border: 2px solid black;
    width: 100%;
}

aside form input[type=submit] {
    margin-top: 3px;
    width: 100%;
    background-color: black;
    color: white;
    border-radius: 5px;
    border: 2px solid black;
}

#main_content {
    padding-left: 2.5%;
    padding-right: 2.5;
}

/* #multicharts ul {
    
} */

#multicharts ul li {
    list-style-type: none;
    width: 25%;
    display: inline-block;
    background-color: pink;
    min-height: 250px;
    margin-bottom: 7px;
}

.chart_container {
    display: flex;
    align-items: center;
    justify-content: center;
}


.minichart {
    min-height: 220px;
    width: 95%;
    background-color: red;
}

footer {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 50px;
    font-size: xx-small;
    justify-content: center;
}