-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprime.css
56 lines (52 loc) · 1020 Bytes
/
prime.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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@700&display=swap');
body {
background-color: darkslategray;
}
.center {
display: flex;
align-items: center;
justify-content: center;
}
.links {
max-width: 100vw;
display: flex;
flex-direction: row;
justify-content: space-evenly;
flex-wrap: wrap;
height: 100px;
}
.link {
/* padding: 2%; */
font-size: xx-large;
display: inline-block;
margin: 1vw 20px 0 20px;
flex: 1 0 15%;
text-align: center;
background-color: rgb(89, 138, 138);
}
.logo {
/* height:32.5rem; */
text-align: center;
max-width: 500px;
min-width: 300px;
width: 75vw;
margin: auto;
user-select: none;
opacity: 90%;
}
a:visited {
color: orange;
}
a.link {
color: rgb(30, 86, 141);
font-family: 'Roboto Mono', monospace;
}
footer {
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
background-color: slategray;
color: lightgray;
}