-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (91 loc) · 1.41 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
:root {
--primary-color: #6c63ff;
--secondary-color: #f5f2fe;
--box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
body {
margin: 100px 0;
}
h1,
h2,
h3 {
margin: 0;
}
h1 {
font-size: 96px;
}
h2 {
font-size: 48px;
}
h3 {
font-size: 24px;
opacity: 0.7;
}
p {
font-size: 18px;
line-height: 1.5;
}
.navigation-links {
display: flex;
margin-top: 40px;
justify-content: center;
}
.navigation-links a {
margin: 20px;
}
.primary-link {
border-radius: 4px;
padding: 20px 15px;
text-decoration: none;
text-transform: capitalize;
background: var(--primary-color);
box-shadow: var(--box-shadow);
color: white;
}
.secondary-link {
border-radius: 4px;
padding: 20px 15px;
text-decoration: none;
text-transform: capitalize;
color: var(--primary-color);
border: 1px solid var(--primary-color);
}
.homepage-link {
color: var(--primary-color);
text-align: center;
display: block;
}
.about-paragraphs {
margin: 30px 0;
}
.about-paragraphs p {
margin: 10px;
}
.email-link {
display: flex;
justify-content: center;
color: var(--primary-color);
font-size: 28px;
text-decoration: none;
}
.email-link:hover {
text-decoration: underline;
}
@media (max-width: 576px) {
h1 {
font-size: 48px;
line-height: 1.5;
}
h2 {
font-size: 32px;
}
h2,
p {
text-align: center;
}
.projectLink {
display: block;
text-align: center;
margin: 0 20px;
}
}