Skip to content

Commit 3da957a

Browse files
authored
Update and rename style.css to styles.css
1 parent fa2ac49 commit 3da957a

2 files changed

Lines changed: 89 additions & 96 deletions

File tree

style.css

Lines changed: 0 additions & 96 deletions
This file was deleted.

styles.css

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
/* Global styles */
2+
body {
3+
font-family: Arial, sans-serif;
4+
margin: 0;
5+
padding: 0;
6+
line-height: 1.6;
7+
background-color: #f4f4f4;
8+
color: #333;
9+
}
10+
11+
/* Header and Navigation */
12+
header {
13+
background: #d33d2d; /* A Jenkins-inspired red */
14+
color: #fff;
15+
}
16+
17+
header nav {
18+
display: flex;
19+
justify-content: space-between;
20+
align-items: center;
21+
padding: 0.8em 1em;
22+
}
23+
24+
header h1 {
25+
margin: 0;
26+
font-size: 1.8rem;
27+
}
28+
29+
header ul {
30+
list-style: none;
31+
display: flex;
32+
margin: 0;
33+
padding: 0;
34+
}
35+
36+
header ul li {
37+
margin-left: 1em;
38+
}
39+
40+
header ul li a {
41+
color: #fff;
42+
text-decoration: none;
43+
font-size: 1rem;
44+
}
45+
46+
header ul li a:hover {
47+
text-decoration: underline;
48+
}
49+
50+
/* Main Content */
51+
main {
52+
max-width: 960px;
53+
margin: 2em auto;
54+
padding: 2em;
55+
background: #fff;
56+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
57+
}
58+
59+
section {
60+
margin-bottom: 2em;
61+
}
62+
63+
section h2 {
64+
color: #d33d2d;
65+
border-bottom: 2px solid #d33d2d;
66+
padding-bottom: 0.3em;
67+
margin-bottom: 1em;
68+
}
69+
70+
ol, ul {
71+
margin-left: 1.5em;
72+
}
73+
74+
/* Code block styling */
75+
pre {
76+
background: #f0f0f0;
77+
padding: 1em;
78+
overflow-x: auto;
79+
border: 1px solid #ddd;
80+
font-family: Consolas, monospace;
81+
}
82+
83+
/* Footer */
84+
footer {
85+
text-align: center;
86+
padding: 1em 0;
87+
background: #333;
88+
color: #fff;
89+
}

0 commit comments

Comments
 (0)