-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (86 loc) · 1.51 KB
/
style.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
91
92
93
94
95
96
97
98
99
/* General Styling */
body {
font-family: 'Arial', sans-serif;
background-color: #f0f0f5;
color: #333;
margin: 0;
padding: 20px;
}
h1 {
font-size: 2.5rem;
text-align: center;
color: #43B581;
}
h2, h3, h4 {
color: #374151;
border-bottom: 2px solid #43B581;
padding-bottom: 5px;
}
p {
line-height: 1.6;
font-size: 1rem;
margin-bottom: 20px;
}
a {
color: #43B581;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Code Block Styling */
pre {
background-color: #2d2d2d;
color: #f8f8f2;
padding: 15px;
border-radius: 10px;
overflow-x: auto;
font-family: 'Courier New', Courier, monospace;
font-size: 0.9rem;
margin: 20px 0;
}
code {
background-color: #f1f1f1;
padding: 3px 6px;
border-radius: 5px;
font-family: 'Courier New', Courier, monospace;
font-size: 0.9rem;
}
/* Form Styling */
form {
background-color: #fff;
padding: 15px;
border-radius: 10px;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
label {
font-weight: bold;
display: block;
margin-bottom: 5px;
color: #374151;
}
input[type="text"], input[type="submit"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border-radius: 5px;
border: 1px solid #ccc;
}
input[type="submit"] {
background-color: #43B581;
color: white;
font-weight: bold;
border: none;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #2d8651;
}
/* Footer */
footer {
text-align: center;
margin-top: 50px;
font-size: 0.8rem;
color: #666;
}