-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.css
89 lines (89 loc) · 1.53 KB
/
contactus.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
#contact_head{
text-align: center;
background-color: #f2f9e8;
font-weight: bolder;
padding: 2%;
color: #8a9abc;
}
#contact_head>h1{padding: 0;}
#slideshow{
display: none;
}
.top{
text-align: center;
padding: 2%;
font-weight: bolder;
margin: 6.5%;
color: black;
}
#contact_us{
width: 80%;
margin: auto auto;
}
#contact_us>div{
display: flex;
}
#contact_us>div>div{
flex: 5;
}
#c_form>input,select,option,textarea{
width: 95%;
padding: 2% 0;
margin: 2% 0;
border: none;
border-bottom: 1px solid #8a9abc;
}
#c_form{
border-right: 1px solid #8a9abc;
color: #8a9abc;
}
#c_form>button{
width: 95%;
padding: 2% 0;
margin: 2% 0;
border: none;
font-weight: bolder;
font-size: larger;
background-color: #00aefe;
color: white;
cursor: pointer;
}
#detail_wrapper{
width: 80%;
margin: auto;
}
#detail_wrapper>div,#detail_wrapper>div>div{
display: flex;
gap: 5%;
}
.c_icon{
height: fit-content;
padding: 5%;
border: 1px solid #8a9abc;
border-radius: 50%;
}
#social_icon{
width: 80%;
margin: auto auto;
font-size: 3vw;
}
#social_icon>div{
margin:0 2%;
padding: 1% 2%;
}
#c_home{
font-weight: 600;
color: #8a9abc;
}
#c_home>a{
text-decoration: none;
color: #00aefe;
}
@media screen and (min-width:0px) and (max-width:768px) {
#contact_us>div{
display: block;
}
#contact_us{width: 90%;}
#c_form{border: none;}
#social_icon{font-size: 5vw;}
}