forked from GauravPimplekar/UNIT2-PROJECT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (125 loc) · 2.46 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
118
119
120
121
122
123
124
125
126
127
128
129
img{
display: block;
margin-left: auto;
margin-right: auto;
width: 97.5%;
}
.top{
display: flex;
justify-content: flex-end;
margin-top: 30px;
}
input{
margin-right: 20px;
height: 35px;
width: 270px;
}
p{
margin-right: 20px;
}
input + input{
background-color: #00819d;
border: 0px;
}
input + input::placeholder{
color: white;
text-align: center;
}
#container{
display: grid;
/* border: 1px solid red; */
grid-template-columns: repeat(6, 1fr);
grid-template-rows: repeat(1, 420px);
}
#container >div{
/* border: 1px solid green; */
/* margin-top: -5px; */
width: auto;
background-color: rgb(249, 247, 247);
}
h3{
margin-left: 17px;
font-size: 1.2rem;
font-family: Brandon Text,Arial,sans-serif;
color: #393939;
font-weight: 700;
}
#container >div >p{
margin-left: 19px;
font-family: Brandon Text,Arial,sans-serif;
font-weight: 400;
line-height: 1.4;
color: #393939;
}
#container >div >p:hover{
cursor: pointer;
color:#00819d ;
text-decoration-line:underline ;
}
.last{
display: flex;
/* border: 5px solid black; */
width: 100%;
height: 50px;
padding-left: 40px;
gap: 20px;
font-family: Brandon Text,Arial,sans-serif;
color: #393939;
font-weight: 400;
background-color: rgb(249, 247, 247);
}
.last>p:hover{
cursor: pointer;
color:#00819d ;
text-decoration-line:underline ;
}
.social>button{
background-color: white;
margin-top: 30px;
border: 1.5px solid black;
border-radius: 50%;
margin-right: 20px;
}
.phone>button{
display: flex;
/* border: 5px solid yellowgreen; */
border: 0px;
margin-top: 30px;
background-color: white;
background-color: rgb(249, 247, 247);
}
.phone>button>p{
margin-top: -2px;
margin-left: 20px;
font-family: Brandon Text,Arial,sans-serif;
color: #393939;
font-weight: 400;
font-size: 15px;
background-color: rgb(249, 247, 247);
}
.social>button:hover{
cursor: pointer;
color:#00819d ;
text-decoration-line:underline ;
border-color: #00819d;
}
.phone>button>p:hover{
cursor: pointer;
color:#00819d ;
text-decoration-line:underline ;
}
img+div{
display: flex;
position: absolute;
margin-left: 50%;
top: 60px;
font-family: Brandon Text,Arial,sans-serif;
color: #393939;
font-weight: 400;
font-size: 15px;
text-decoration-line: underline;
}
img+div:hover{
cursor: pointer;
text-decoration-style: double;
}