-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (67 loc) · 1.18 KB
/
Copy pathstyle.css
File metadata and controls
93 lines (67 loc) · 1.18 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
90
91
92
body{
font-family: 'Roboto', sans-serif;
font-weight: 400;
font-size: 16px;
}
h1, h2{
font-family: 'Bebas Neue', cursive;
font-weight: 400;
}
h1{
font-size: 80px;
line-height: 96px;
}
h2{
font-size: 48px;
line-height: 58px;
}
h3{
font-size: 24px;
line-height: 28px;
font-weight: 700;
}
.header-section{
background-color: #FFFBF0;
}
.panguin-btn{
background-color: #A4BC46;
border: none;
color: white;
}
.panguin-btn:hover{
background-color: #FABE4C;
}
.title-first-part{
color: #FABE4C;
}
.card-img-top{
background-color: #F1F1F1;
}
/* Responsive Design */
/* Mobile Device */
@media only screen and (max-width:688px) {
.banner{
flex-direction: column;
}
img{
width: 80%;
}
.help{
flex-direction: column-reverse;
margin-bottom: 20px;
}
.help-insights img{
width: 40%;
}
.help-cover-photo{
width: 100%;
text-align: center;
margin-bottom: 50px;
}
.help-insights{
text-align: center;
}
}
/* For Tablets */
@media only screen and (min-width:688px) and (max-width: 992px) {
}