-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
87 lines (72 loc) · 1.13 KB
/
styles.css
File metadata and controls
87 lines (72 loc) · 1.13 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
/* css styles */
body {
font-family: 'Source Sans Pro', sans-serif;
line-height: 1.6;
color: #333;
}
.column-page-right {
max-width: 900px;
margin: 0 auto;
}
h1 {
text-align: center;
font-size: 2.5em;
margin-bottom: 0.5em;
color: #2c3e50;
}
#title-block-header,
.quarto-title,
.quarto-title .title {
text-align: center;
}
.quarto-title .title {
display: inline-block;
}
h2 {
font-size: 1.8em;
color: #34495e;
margin-top: 1.5em;
margin-bottom: 0.5em;
border-bottom: 2px solid #3498db;
padding-bottom: 0.3em;
}
h3 {
font-size: 1.3em;
color: #34495e;
margin-top: 1em;
}
p {
margin: 0.8em 0;
}
hr {
margin: 2em 0;
border: none;
border-top: 1px solid #ddd;
}
.form-group {
margin-bottom: 1.2em;
}
.btn-primary {
background-color: #3498db;
border-color: #3498db;
padding: 0.6em 1.5em;
font-size: 1em;
border-radius: 4px;
cursor: pointer;
}
.btn-primary:hover {
background-color: #2980b9;
border-color: #2980b9;
}
/* Responsive design */
@media (max-width: 768px) {
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
.column-page-right {
padding: 0 1em;
}
}