-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
56 lines (49 loc) · 933 Bytes
/
index.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
* {
box-sizing: border-box;
}
body {
text-align: center;
justify-content: center;
text-decoration: solid;
background-color: rgb(0, 0, 0);
font-weight: bolder;
}
/* navbar */
.nav-bar {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding: 1rem;
margin-bottom: 5px;
gap: 1rem;
border-bottom: solid 1px #aaa;
background-color: #aaa;
}
nav a {
min-width: 9rem;
border-radius: 0.3rem;
border: solid black;
background-color: aliceblue;
text-decoration-line: none;
padding: 5px;
}
/* navbar */
h1 {
color: #fff;
text-align: left;
}
.projects {
display: flex;
flex-direction: column;
}
.project-link {
background-color: #fff;
padding: 10px 30px;
border-radius: 8px;
color: #212121;
text-decoration: none;
text-align: left;
border: 2px solid #212121;
margin-top: 5px;
}