-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDSA in C.css
More file actions
117 lines (99 loc) · 1.7 KB
/
DSA in C.css
File metadata and controls
117 lines (99 loc) · 1.7 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
/* Reset default browser styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Set global font and background */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
line-height: 1.6;
padding: 20px;
}
/* Header style */
header {
text-align: center;
margin-bottom: 30px;
}
header h1 {
font-size: 2.5em;
color: #2c3e50;
}
header p {
font-size: 1.2em;
color: #7f8c8d;
}
/* Navigation bar style */
nav {
background-color: #3498db;
color: white;
padding: 15px;
border-radius: 8px;
margin-bottom: 30px;
}
nav h2 {
font-size: 1.8em;
}
nav ul {
list-style-type: none;
}
nav ul li {
margin: 10px 0;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 1.2em;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #ecf0f1;
}
/* Section styles */
.content {
max-width: 1000px;
margin: 0 auto;
}
.section {
margin-bottom: 20px;
padding: 15px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.section h2 {
font-size: 1.8em;
color: #3498db;
margin-bottom: 10px;
}
.section p {
font-size: 1.1em;
color: #555;
}
.section ul {
list-style-type: square;
margin-left: 20px;
}
.section pre {
background-color: #2d3436;
color: white;
padding: 15px;
border-radius: 8px;
font-size: 1.1em;
margin-top: 10px;
}
.section code {
font-family: 'Courier New', monospace;
font-size: 1.1em;
}
/* Footer style */
footer {
text-align: center;
padding: 10px;
margin-top: 30px;
background-color: #2c3e50;
color: #ecf0f1;
border-radius: 8px;
}