aboutsummaryrefslogtreecommitdiff
path: root/style.css
blob: 28697c8a71354efd02ac74fc67d8cb806db8f76e (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
@font-face {
    font-family: commitmono;
    src: url('./fonts/CommitMono-400-Regular.ttf');
}

body {
    background-image: url('img/bg.gif');
    margin: 0;
    height: 100vh;
}

* {
    box-sizing: border-box;
}

p {
    font-family: commitmono;
    text-align: center;
    color: white;
}

h1 {
    font-family: commitmono;
    color:#3d356a;
    text-align: center;
}

img {
    display: block;
    margin: 0 auto;
}

#container {
    max-width: 40%;    
    height: 100%;
    margin: auto;
}

#main {
    background-color: black;
    height: 90%;
    padding: 40px;
}

.buttons {
    display:flex;
    justify-content:center;
}


/* navigation section!! */
#info {
    height: 40px;
    background-color: #3d356a;
    /* navbar color */
    width: 100%;
}

#info ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#info li {
    padding-top: 10px;
}

/* navigation links*/
#info li a {
    color: #FFFFFF;
    /* navbar text color */
    font-family: commitmono;
    font-weight: 800;
    text-decoration: none;
    /* this removes the underline */
}


footer {
    background-color: #000000;
    color: #000000;
    /* background color for footer */
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
    /* this centers the footer text */
}