-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (77 loc) · 1.17 KB
/
style.css
File metadata and controls
83 lines (77 loc) · 1.17 KB
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
@font-face{
font-family: 'Roboto';
src: url(./web\ fonts/roboto_light_macroman/Roboto-Light-webfont.woff) format('woff');
}
@font-face {
font-family: 'Roboto-medium';
src: url(./web\ fonts/roboto_medium_macroman/Roboto-Medium-webfont.woff) format('woff');
}
*,
*::before,
*::after{
box-sizing: border-box;
}
body{
font-size: 1rem;
padding: 0;
margin: 0;
}
p{
font-family: 'Roboto';
}
h1,h2{
font-family: 'Roboto-medium';
}
img{
max-width: 100%;
}
.container{
width: 90%;
max-width: 750px;
margin: 0 auto;
}
.hero-page{
background-color:#23424A ;
padding: 3em 0;
}
.hero-content{
display: flex;
}
.hero-text{
width: 60%;
color: #fff;
}
.hero-text p{
margin-bottom: 3em;
}
.hero-text a{
text-decoration: none;
text-transform: uppercase;
border-radius: 100px;
background-color: #38CFD9;
font-family: 'Roboto-medium';
color: #23424A;
padding: .3em .4em;
}
.hero-text a:hover{
opacity: .6;
}
.hero-content img{
align-self: flex-start;
margin-right: 3em;
}
.main{
padding: 3em 0;
}
.main-wrapper{
display: flex;
justify-content: space-around;
}
.main-first-layout{
color: #136C72;
}
.main-second-layout{
text-align: center;
background-color: #136C72;
color: #fff;
}