-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (52 loc) · 915 Bytes
/
styles.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-align: center;
}
#navbar{
background-color: hwb(144 7% 48%);
margin: 0;
padding: 14px 16px;
}
#navbar a{
overflow: hidden;
background-color: black;
margin: 0;
padding: 0;
text-align: left;
}
#navbar a{
float: top;
color: hwb(144 7% 48%);
text-align: left;
padding: 10px 16px;
text-decoration: none;
font-size: 17px;
border-radius: 25px 0 25px 0;
}
#navbar a:hover {
background-color: #ddd;
color: black;
}
#welcome-section{
padding: 5px;
margin: auto;
background-color: #083b3ba6;
min-height: 100px;
}
#projects{
padding: 5px;
margin: auto;
background-color: blueviolet;
min-height: 200px;
}
#profile-link{
padding: 5px;
margin: auto;
background-color: black;
min-height: 40px;
}
a:hover{
color: rgb(0, 255, 98);
}