-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgpt_portfolio.css
More file actions
77 lines (65 loc) · 1 KB
/
gpt_portfolio.css
File metadata and controls
77 lines (65 loc) · 1 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
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* General Styles */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
header h1 {
font-size: 2.5em;
margin-bottom: 5px;
}
header p {
font-size: 1.2em;
font-style: italic;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
section {
padding: 20px;
margin: 20px 0;
}
h2 {
font-size: 2em;
margin-bottom: 10px;
color: #333;
}
.project, .skill, .contact {
margin-bottom: 15px;
}
ul {
list-style-type: none;
}
ul li {
background: #ddd;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: #fff;
position: relative;
bottom: 0;
width: 100%;
}