-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (70 loc) · 1.06 KB
/
style.css
File metadata and controls
85 lines (70 loc) · 1.06 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
color: #333;
line-height: 1.6;
}
.container {
width: 80%;
margin: 0 auto;
max-width: 1200px;
}
header {
background-color: #2e3b4e;
color: white;
padding: 20px 0;
text-align: center;
}
header h1 {
font-size: 3em;
margin-bottom: 10px;
}
header p {
font-size: 1.2em;
}
.content {
padding: 40px 0;
text-align: center;
}
.content h2 {
font-size: 2em;
margin-bottom: 20px;
}
.coin-image {
max-width: 100%;
height: auto;
margin: 20px 0;
}
.social-links {
margin-top: 30px;
}
.social-links h3 {
font-size: 1.5em;
margin-bottom: 10px;
}
.social-icon {
font-size: 1.2em;
margin: 10px;
color: #333;
text-decoration: none;
display: inline-block;
transition: color 0.3s ease;
}
.social-icon:hover {
color: #1da1f2; /* Twitter blue for hover effect */
}
footer {
background-color: #2e3b4e;
color: white;
padding: 10px 0;
text-align: center;
margin-top: 40px;
}
footer p {
font-size: 1em;
}