-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (112 loc) · 2.01 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
106
107
108
109
110
111
112
113
114
115
116
117
*{
margin:0;
padding:0;
box-sizing:border-box;
}
.navbar-brand{
font-family: 'Merienda One', cursive;
}
#orange{
color:orange;
}
#blue{
color:rgb(0, 132, 255);
}
#green{
color:rgb(62, 235, 62);
}
.body-header{
background-image:url("images/make-in-india-campaign-logo3.jpg");
height:90vh;
width:100%;
background-size: contain;
background-repeat: no-repeat;
padding-top:13%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin-top:40px;
}
#heading{
font-size:3.2rem;
font-family: 'Libre Baskerville', serif;
letter-spacing:0.1rem;
font-weight:700; /*means bold*/
color:white;
text-shadow: 0px 4px 3px rgba(8, 63, 245, 0.4),
0px 8px 13px rgba(216, 215, 215, 0.1),
0px 18px 23px rgba(7, 7, 7, 0.1);
}
.section-heading h1{
color:rgb(21, 52, 121);
margin-bottom:50px;
margin-top:60px;
font-weight: 700;
font-family: 'Righteous', cursive;
}
.about-heading h1{
color:rgb(21, 52, 121);
margin-bottom:40px;
margin-top:40px;
font-weight: 700;
font-family: 'Righteous', cursive;
}
.about-para{
margin: auto;
}
.about-img{
width:360px;
height:360px;
}
.product-sectors{
display:flex;
flex-wrap: wrap;
justify-content:space-around;
}
.card{
width: 20rem;
margin-bottom:30px;
}
.card-img-top{
height:200px;
}
footer{
background:#e7e7e7;
height:120px;
color:rgb(21, 52, 121);
font-weight: bold;
text-align: center;
padding-top:30px;
margin-top:30px;
border-top:7px solid rgb(21, 52, 121);
}
.fa-heart{
color:red;
}
a #about:active{
color: red;
}
@media only screen and (max-width: 700px) {
.body-header {
height:40vh;
}
#heading{
font-size:2.2rem;
}
.about-para{
margin-top:30px;
}
}
@media only screen and (min-width:701px) {
.body-header {
height:43vh;
}
}
@media only screen and (min-width:820px) {
.body-header {
height:65vh;
}
}
@media only screen and (min-width:1036px) {
.body-header {
height:85vh;
}
}