-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.css
64 lines (61 loc) · 1011 Bytes
/
products.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
*{
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);
}
.section-heading p{
color:rgb(236, 148, 15);
margin-bottom:30px;
margin-top:80px;
font-weight: 700;
font-family: 'Righteous', cursive;
font-size: 2.8rem;
}
.tab-content{
background-color: #FFEFD5;
}
.nav-pills > a.active {
background-color: #ff0000!important;
}
.nav-pills > a{
color:white;
font-size: 1.5rem;
}
.tab-content img{
width:250px;
height:250px;
}
.content{
padding:20px;
}
.companies{
display:flex;
justify-content:center;
}
.companies h2{
margin:0 25px;
margin-bottom:15px;
}
.companies ul li{
list-style-type:none;
}
@media only screen and (max-width: 700px) {
.companies{
display:block;
}
.companies ul{
margin-bottom: 30px;
}
}