-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (105 loc) · 1.8 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
:root {
--primary-color: #6c63ff;
--secondary-color: #f5f2fe;
--box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
body {
margin-top: 100px;
}
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;
}
footer .email-link {
text-decoration: none;
color: black;
font-size: 24px;
text-align: center;
}
footer .email-link:hover {
color: var(--primary-color)
}
footer .social-links a {
margin: 0 20px;
color: var(--primary-color);
background-color: var(--secondary-color);
padding: 10px 14px;
font-size: 18px;
border-radius: 50%;
transition: all 100ms ease-in-out;
}
footer .social-links a:hover{
color: white;
background-color: var(--primary-color);
}
.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;
}
.contact-link {
display: flex;
justify-content: center;
color: var(--primary-color);
font-size: 20px;
text-decoration: none;
padding: 10px 20px 30px;;
}
.contact-link:hover {
text-decoration: underline;
}
@media (max-width: 576px) {
h1 {
text-align: center;
font-size: 70px;
}
.images {
display: none;
}
}