-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
189 lines (154 loc) · 3.12 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
.main{
width:100%;
height: 100%;
}
header{
display: flex;
background-color: rgb(248, 241, 241);
justify-content: space-evenly;
width:100%;
}
.head1{
display:flex;
align-items: center;
justify-content: center;
}
.head2{
display: flex;
align-items: center;
justify-content: space-between;
padding: 2% 6%;
padding-left:20px;
position: inherit;
}
button{
background-color: black;
color:white;
}
.head1 h3{
padding-right: 10px;
padding-top: 2px;
}
.title{
display:flex;
align-items:center;
justify-content: center;
font-size: 60px;
font-family:segoe script;
}
.navbar{
display:flex;
margin-left: 0px;
border-top: 1px solid rgb(211,211,211);
border-bottom: 1px solid rgb(211,211,211);
padding-left: 50px;
padding-bottom: -80px;
margin-bottom: 50px;
}
.navbar ul li{
float: left;
margin: 0px 10px;
list-style: none;
display:flex;
justify-content:space-evenly;
}
.navbar ul li input[type=text]{
padding-left: 55px;
}
.navbar ul li a{
text-decoration: none;
color: black;
}
.underline{
display:flex;
justify-content: space-between;
padding-right: 50%;
}
.middle{
display:flex;
}
.right{
padding-left:15%;
padding-right: 10%;
}
.a{
padding-bottom: 50px;
border-bottom: 1px solid rgb(211,211,211); ;
}
.last{
display:flex;}
.lastimg img{
border-radius: 50%;
}
.last{
border-bottom: 1px solid rgb(211,211,211);
padding-bottom: 50px;
}
@media (max-width:600px){
*{
box-sizing: border-box;
overflow-x: hidden;
}
header{
display:flex;
flex-direction:column;
justify-content: flex-start;
background-color: aliceblue;
width:100%;
}
.head1{
display:flex;
flex-direction:column;
}
.head2{
display:flex;
flex-direction:column;
justify-content: center;
}
#y{
margin-top: 3%;
}
#x{
margin-top:3%;
margin-right: 1%;
}
.right{
display:flex;
flex-direction:column;
}
.middle{
display:flex;
flex-direction:column;
}
.imgone img{
width:450px;
height: 450px;
}
.first,.underline{
padding-left:15px;
display:flex;
justify-content: space-between;
}
.navbar{
padding-left:5px;
display:flex;
flex-direction:column!important;
}
.navbar ul{
padding-left: 15px;
}
.navbar ul li{
display:flex;
justify-content: space-evenly;
align-items:center;
flex-direction:row;
margin-right: 80px;
margin-left: 0px;
}
.a{
padding-left: 5%;
}
.lastimg{
padding-right: 35%;
}
}