Skip to content

Commit 001b17e

Browse files
committed
colors
1 parent 2cd5d6a commit 001b17e

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

practice/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
*::before,
1116
*::after {
@@ -19,6 +24,8 @@ FONT SIZE SYSTEM (px)
1924
/* ------------------------ */
2025
body {
2126
font-family: 'Inter', sans-serif;
27+
color: #343a40;
28+
border-bottom: 8px solid #087f5b;
2229
}
2330

2431
.container {
@@ -44,6 +51,31 @@ h2 {
4451
column-gap: 80px;
4552
}
4653

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

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

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

0 commit comments

Comments
 (0)