-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-responsive.css
executable file
·108 lines (103 loc) · 1.63 KB
/
custom-responsive.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
@media screen and (max-width: 768px){
.header{
height: 50px;
background-image: linear-gradient(rgba(0,0,0,1),rgba(0,0,0,0.7));
}
.header-images{
height: 50px;
float: none;
}
.header-images .brand-image{
height: 40px;
width: 140px;
padding:5px 20px;
}
.menu{
float: none;
}
.menu ul li{
display: block;
background: rgba(28,28,28,0.6);
padding: 2px;
text-align: center;
font-size: 17px;
}
.menu ul li:hover{
background: #2a2a2a;
}
.menu ul{
margin: 0px;
}
.wrap-content{
width: 90%;
}
.menu{
display: none;
}
.menu-button{
display: block;
}
.wrapper-content h1{
font-size: 30px;
}
.learn-btn{
padding:2px 25px;
}
.div-box{
width:100%;
float:none;
text-align: center;
}
.service-container{
position: static;
box-shadow: none;
width: 100%;
}
.contact-us{
}
.contact-us .con{
margin-bottom: 20px;
height: 50px;
width:120px;
}
.contact-us .con1{
background-position: center;
float:none;
text-align: center;
}
.contact-us .contact-form{
float:none;
width:100%;
text-align: center;
}
.contact-form input{
width: 50%;
}
.contact-form textarea{
width: 80%;
}
.contact-form .submit{
width:30%;
}
.footer .widgets{
width:100%;
min-height: auto;
padding: 2.5% 0px;
float:none;
}
.main-footer p{
font-size: 15px;
}
}
@media screen and(max-width: 320px){
.wrapper-content h1{
font-size:26px;
}
.wrapper-content{
padding-top: 15%;
padding-bottom: 15%;
}
.about-us p{
font-size: 10px;
}
}