-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (84 loc) · 1.36 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
/*
////// For this challenge ///////
- All text is in the text.md file
// Requirements
1. Refer to the design specs for the overall layout
2. The image should line up with the sidebar in the section below
*/
*, *::before, *::after {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Roboto', sans-serif;
font-size: 1.3rem;
}
img {
max-width: 100%;
}
h1 {
font-size: 3rem;
margin-top: 0;
}
.container {
width: 80%;
max-width: 1100px;
margin: 0 auto;
}
.row {
display: flex;
justify-content: space-between;
}
.row2{
display: flex;
flex-direction: column;
background: #136b71;
width: 32%;
padding: 2em;
}
.row3 {
display: flex;
justify-content: space-between;
}
.col2 {
color: #ffffff;
text-align: center;
}
.hero {
padding: 100px 0;
background-color: #23424A;
color: #FFF;
}
.hero2{
margin: 5rem 0;
}
.hero2--h2{
color: #136C72;
}
.hero2--p{
color: #3A3A3A;
}
.hero__text {
width: 62%;
}
.hero__img {
width: 32%;
align-self: flex-start;
}
.hero p {
margin-bottom: 3em;
}
.btn {
display: inline-block;
text-decoration: none;
text-transform: uppercase;
color: #23424A;
font-weight: 900;
background-color: #38CFD9;
padding: .75em 2em;
border-radius: 100px;
}
.btn:hover,
.btn:focus {
opacity: .75;
}