-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (84 loc) · 1.59 KB
/
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
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
92
93
94
95
96
/* General Styles */
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color: #FFCB05;
background-color: #00274C;
display: flex;
flex-direction: column;
}
/* Header */
header {
display: flex;
align-items: center;
background-color: #FFCB05;
color: black;
padding: 20px;
border-bottom: 3px solid #000000;
justify-content: center;
}
.profile-pic {
width: 100px;
height: 100px;
border-radius: 5px;
margin-left: 50px;
}
p {
text-align: center;
padding-left: 18%;
padding-right: 18%;
}
/* Navigation */
nav {
margin: 25px 0;
text-align: center;
}
nav a {
margin: 0 10px;
color: black;
text-decoration: none;
font-weight: bold;
padding: 5px 10px;
border: 2px solid transparent;
transition: all 0.3s ease;
background-color: #FFCB05;
border-radius: 5px;
}
nav a:hover {
background-color: #005f99;
border-color: #003f73;
}
/* Projects */
h2 {
margin-top: 30px;
color: #FFCB05;
border-bottom: 1px solid #FFCB05;
text-align: center;
font-size: 28px;
}
ul {
list-style-type: none;
padding: 0;
margin: 0 auto;
max-width: 800px;
text-align: center;
}
ul li {
margin: 10px 0;
}
ul li a {
display: inline-block;
color: black;
background-color: #FFCB05;
text-decoration: none;
font-weight: bold;
padding: 10px 20px;
border-radius: 5px;
transition: all 0.3s ease;
margin: 5px;
}
ul li a:hover {
background-color: #005f99;
border-color: #003f73;}