forked from PRIYESHSINGH24/DSA_SOLUTION_PLATFORM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
90 lines (78 loc) · 1.47 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
/* Basic resets */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
}
/* Header styles */
header {
background-color: #333;
color: white;
padding: 1rem;
text-align: center;
}
/* Main content */
main {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
}
/* Problem list styles */
.problem-list {
list-style: none;
padding: 0;
}
.problem-list li {
background: #fff;
margin-bottom: 1rem;
padding: 1rem;
border: 1px solid #ddd;
border-radius: 5px;
}
.problem-list a {
text-decoration: none;
color: #333;
font-weight: bold;
}
/* Code block styling */
pre {
background-color: #eee;
padding: 1rem;
border-radius: 5px;
overflow-x: auto;
}
code {
font-family: 'Courier New', Courier, monospace;
color: #d14;
}
/* Footer styles */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
margin-top: 2rem;
}
footer a {
color: #fff;
text-decoration: underline;
}
/* Button styling */
.btn {
display: inline-block;
background-color: #28a745;
color: white;
padding: 0.75rem 1.25rem;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #218838;
}