-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
90 lines (74 loc) · 1.32 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
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
color: #333;
}
header {
background: #fff;
padding: 20px;
text-align: center;
border-bottom: 1px solid #ddd;
}
header h1 {
margin: 0;
font-size: 2.5em;
color: #111;
}
header p {
margin: 5px 0;
font-size: 1.2em;
}
header a {
color: #666;
text-decoration: none;
border-bottom: 2px solid #666;
}
section {
padding: 20px;
max-width: 800px;
margin: auto;
}
h2 {
color: #111;
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
}
.article {
margin-bottom: 20px;
}
.article p {
margin: 0;
color: #888;
}
.article a {
text-decoration: none;
color: #b11c39;
font-weight: bold;
display: block;
margin-top: 5px;
}
.article a:hover {
color: #d12345;
}
.custom-font {
font-family: "Nanum Pen Script", cursive;
font-weight: 400;
font-style: normal;
}
.wrapper {
display: grid;
grid-template-columns: 200px 200px 200px;
}
.ventures h4 a i {
vertical-align: middle; /* Aligns the icons vertically in the middle */
line-height: 1; /* Ensures consistent line height */
}
.ventures h4 {
display: inline-flex;
align-items: center;
}
.ventures h4 a {
margin-left: 8px; /* Add spacing between icons */
}