Skip to content

Commit 000a614

Browse files
committed
Implementing Colors.
1 parent 9ce5c07 commit 000a614

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

starter/05-Design/style.css

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ FONT SIZE SYSTEM (px)
66
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
77
*/
88

9+
/*
10+
MAIN COLOR: #087f5b
11+
GREY COLOR: #343a40
12+
*/
13+
914
* {
1015
margin: 0;
1116
padding: 0;
@@ -17,6 +22,8 @@ FONT SIZE SYSTEM (px)
1722
/* ------------------------ */
1823
body {
1924
font-family: "Inter", sans-serif;
25+
color: #343a40;
26+
border-bottom: 8px solid #087f5b;
2027
}
2128

2229
.container {
@@ -42,6 +49,31 @@ h2 {
4249
column-gap: 80px;
4350
}
4451

52+
.btn:link,
53+
.btn:visited {
54+
background-color: #087f5b;
55+
color: #fff;
56+
text-decoration: none;
57+
text-transform: uppercase;
58+
font-weight: 500;
59+
display: inline-block;
60+
}
61+
62+
.btn:hover,
63+
.btn:active {
64+
background-color: #099268;
65+
}
66+
67+
.btn--big {
68+
font-size: 18px;
69+
padding: 16px 32px;
70+
}
71+
72+
.btn--small {
73+
font-size: 14px;
74+
padding: 8px 12px;
75+
}
76+
4577
/* ------------------------ */
4678
/* COMPONENT STYLES */
4779
/* ------------------------ */
@@ -92,6 +124,9 @@ img {
92124

93125
/* TESTIMONIAL */
94126
.testimonial-section {
127+
background-color: #087f5b;
128+
color: #fff;
129+
padding: 24px;
95130
}
96131

97132
.testimonial-box {
@@ -150,4 +185,5 @@ h3 {
150185
footer {
151186
margin-bottom: 48px;
152187
font-size: 14px;
188+
color: #868e96;
153189
}

0 commit comments

Comments
 (0)