-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (90 loc) · 1.53 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
100
101
102
103
104
105
106
/* Body Styles */
body {
font-family: Arial, sans-serif;
color: #333333;
background-color: #F5F5F5;
margin: 0;
padding: 0;
padding-bottom: 20px;
}
/* Header Styles */
header {
background-color: #FF4081;
padding: 20px;
color: #FFFFFF;
text-align: center;
}
header h1 {
font-size: 30px;
}
nav {
background-color: #FF4081;
text-align: left;
overflow: hidden;
text-align: center; /* Center the navigation links */
}
nav a {
display: inline-block; /* Display links horizontally */
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
/* Content Styles */
.content {
min-height: 100vh;
margin: 20px;
background-color: #FFFFFF;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.content h2 {
font-size: 24px;
color: #FF4081;
margin-top: 0;
}
.content p {
font-size: 16px;
line-height: 1.5;
color: #333333;
}
.content a {
color: #FF4081;
text-decoration: none;
}
.content a:hover {
text-decoration: underline;
}
/* Code Block Styles */
pre {
background-color: #F9F9F9;
padding: 10px;
border-radius: 5px;
overflow: auto;
}
pre code {
font-family: Consolas, Monaco, 'Andale Mono', monospace;
font-size: 14px;
color: #333333;
}
/* Callout Styles */
.callout {
background-color: #FFEB3B;
padding: 15px;
margin: 20px 0;
border-radius: 5px;
}
.callout p {
margin: 0;
}
.callout.warning {
background-color: #FF5722;
}
img{
max-width:500px;
}