-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
81 lines (69 loc) · 1.2 KB
/
stylesheet.css
File metadata and controls
81 lines (69 loc) · 1.2 KB
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
body {
background-color: black;
}
nav {
display: flex;
justify-content: center;
align-items: center;
background-color: black;
width: 100%;
height: 60px;
position: absolute;
top: 0;
left: 0;
border-bottom: 1px solid white;
}
.nav-link {
margin-right: 140px;
text-decoration: none;
color: white;
font-family: 'Source Code Pro', monospace;
height: 30px;
width: 170px;
background-color: #090909;
border-radius: 10px;
text-align: center;
padding-top: 5px;
}
nav #knightly-coding {
width: 450px;
background-color: inherit;
text-align: left;
}
nav #selected {
color: green;
background-color: inherit;
}
main {
margin-top: 70px;
}
p {
color: white;
font-family: 'Roboto Mono', monospace;
}
h1 {
color: white;
font-family: 'Roboto Mono', monospace;
}
.project {
width: 260px;
height: 350px;
border: 1px solid white;
border-radius: 10px;
display: table-cell;
padding: 10px;
}
table {
border-spacing: 40px;
margin-left: -40px;
}
.project a {
text-decoration-color: white;
}
.project h1 {
color: green;
}
main a {
text-decoration-color: white;
color: green;
}