-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
128 lines (108 loc) · 1.93 KB
/
styles.css
File metadata and controls
128 lines (108 loc) · 1.93 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background: #f0f4f8;
}
header {
background: #004aad; /* Blue inspired by nuclear tech */
color: white;
text-align: center;
padding: 2rem;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
font-size: 1.2rem;
margin: 0.5rem 0;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 1.5rem;
}
nav ul li a {
color: #a6e3e9; /* Light cyan for contrast */
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
text-decoration: underline;
}
section {
padding: 3rem;
max-width: 1000px;
margin: 0 auto;
}
h2 {
color: #004aad;
border-bottom: 2px solid #a6e3e9;
padding-bottom: 0.5rem;
}
.skills-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.skill {
background: white;
padding: 1rem;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.project {
background: white;
padding: 1rem;
margin-bottom: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.project a {
color: #004aad;
text-decoration: none;
font-weight: bold;
}
form {
display: flex;
flex-direction: column;
max-width: 500px;
margin: 1rem auto;
}
form label {
margin: 0.5rem 0;
font-weight: bold;
}
form input, form textarea {
padding: 0.8rem;
margin-bottom: 1rem;
border: 1px solid #a6e3e9;
border-radius: 4px;
}
form button {
padding: 0.8rem;
background: #004aad;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
}
form button:hover {
background: #003087;
}
footer {
text-align: center;
padding: 1.5rem;
background: #004aad;
color: white;
}
footer a {
color: #a6e3e9;
text-decoration: none;
}