-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (88 loc) · 1.57 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
/* Custom @font-face declaration */
@font-face {
font-family: 'Courier New';
src: url('path/to/CourierNew.woff2') format('woff2'),
url('path/to/CourierNew.woff') format('woff');
font-display: swap; /* Ensures text remains visible during webfont load */
}
/* Base styles */
body {
color: #000;
background-color: #FAFAFA;
font-family: 'Courier New', Courier, monospace;
}
/* Responsive layout adjustments */
@media (max-width: 480px) {
body {
font-size: 16px;
margin: 0;
}
#content {
padding: 0;
}
}
/* For medium screens */
@media (min-width: 768px) {
body {
font-size: 20px;
}
}
/* For large screens */
@media (min-width: 992px) {
body {
font-size: 24px;
}
}
/* For extra large screens */
@media (min-width: 1200px) {
body {
font-size: 28px;
}
}
/* Content section styling */
#content {
max-width: 650px;
padding: 20px;
margin: 0 auto;
margin-top: 5%;
}
#content h1 {
font-size: 200%;
margin-bottom: 10px;
}
#content p {
font-size: 1.75rem;
line-height: 1.5;
font-weight: 410;
letter-spacing: 0.1em;
}
#content a {
color: #000;
transition: color 0.2s;
}
#content a:hover {
color: #ffcc4d;
}
/* Social media section styling */
.social-media {
display: flex;
justify-content: space-between;
max-width: 650px;
margin: 20px auto 5%;
padding: 20px;
margin-bottom: 15%;
}
.social-media a {
color: #000;
text-decoration: none;
padding: 0;
border-radius: 5px;
background-color: #fafafa;
}
.social-media a:hover {
color: #ffcc4d;
}
.social-media i {
margin-right: 10px;
font-size: 120%;
}