-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (89 loc) · 1.86 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
/*font-family: 'Playfair Display', serif;
font-family: 'Poppins', sans-serif;*/
:root {
--branding-color: #fde3de;
--secondary-color: #f9f7fe;
--link-color: #ffca2c;
--heading-font-family: "Playfair Display", serif;
--default-font-family: "Poppins", sans-serif;
}
.hero{
background-color: var(--branding-color);
text-align: center;
}
h1, h2{
font-family:'Playfair Display', serif;
font-weight: normal;
margin-top: 0px;
}
.hero p{
font-family: 'Poppins', sans-serif;
margin-top: 0px;
font-size: 36px;
}
.hero h1{
font-size: 96px;
}
p{
font-family: 'Poppins', sans-serif;
text-align: center;
font-size: 16px;
line-height: 2;
}
.hero h2{
font-size: 24px;
font-weight: normal;
line-height: 27px;
}
h1{
font-size: 64px;
}
.launch{
display: block;
margin: 0 auto;
border-radius: 4px;
font-size: 18px;
line-height: 2px;
padding: 15px 30px;
}
footer {
margin: 60px 0;
}
footer .contact-box {
background: var(--branding-color);
padding: 30px 120px;
border-radius: 10px;
}
footer .contact-box p {
margin: 0;
}
footer .email-link {
text-decoration: none;
color: black;
font-size: 24px;
}
footer .email-link:hover {
color: var(--branding-color);
}
footer .social-links a {
margin: 0 20px;
color: var(--link-color);
background:var(--secondary-color);
padding: 10px 14px;
border-radius: 50%;
font-size: 18px;
transition: all 100ms ease-in-out;
}
footer .social-links a:hover {
color: white;
background: var(--link-color);
}
@media (max-width:900px) {
.d-lg-block{
display: none;
}
.project-description p{
text-align: center;
padding: 0px;
}
}