This repository was archived by the owner on Aug 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (76 loc) · 1.5 KB
/
style.css
File metadata and controls
89 lines (76 loc) · 1.5 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
84
85
86
87
88
89
body,html {
padding: 0;
margin: 0;
height: 100%;
font-family: 'Montserrat', sans-serif;
}
.main {
display: flex;
background: red;
width: 100%;
height: 100%;
}
.main .left-part {
width: 40%;
height: 100%;
background: white;
}
.main .right-part {
width: 60%;
height: 100%;
background: url(./img/hero.png) no-repeat 50% #ffd626;
}
.main .left-part {
display: flex;
justify-content: center;
align-items: center;
}
.main .left-part-wrapp h1 {
text-transform: uppercase;
font-size: 68px;
margin: 0;
color: rgba(0, 0, 0, 0.87);
}
.main .left-part-wrapp h3 {
font-size: 36px;
font-family: 'Montserrat';
font-weight: 600;
color: rgba(0, 0, 0, 0.87);
margin: 0;
}
.main .left-part-wrapp p {
font-size: 22px;
font-weight: 600;
}
.main .left-part-wrapp a {
font-size: 20px;
color: rgba(8, 135, 236, 0.87);
font-weight: bold;
}
@media screen and (max-width: 1200px) {
.main {
flex-direction: column-reverse;
}
.col-sm-12 {
display: block;
width: 100% !important;
}
.right-part.col-sm-12 {
background-size: 45%;
}
.main .left-part-wrapp h1 {
font-size: 45px;
text-align: center;
}
.main .left-part-wrapp h3 {
font-size: 25px;
text-align: center;
}
.main .left-part-wrapp p {
text-align: center;
}
.main .left-part-wrapp a {
text-align: center;
display: block;
}
}