-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
166 lines (151 loc) · 2.41 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
* {
margin: 0;
padding: 0;
}
.logo {
width: 30%;
display: flex;
justify-content: center;
align-items: center;
}
.logo img {
width: 30%;
border: 3px solid white;
border-radius: 50px;
}
.navbar {
display: flex;
align-items: center;
justify-content: center;
position: sticky;
top: 0;
cursor: pointer;
}
.nav-list {
width: 50%;
/* background-color: black; */
display: flex;
align-items: center;
}
.nav-list li {
list-style: none;
padding: 26px 30px;
}
.nav-list li a {
text-decoration: none;
color: white;
}
.nav-list li a:hover {
text-decoration: none;
color: black;
}
.rightNav {
/* background-color: blueviolet; */
width: 50%;
text-align: right;
}
#search {
padding: 5px;
font-size: 17px;
border: 2px solid grey;
border-radius: 9px;
}
.background {
background: rgba(0, 0, 0, 0.7) url(backgroung-img.jpg);
background-size: cover;
background-blend-mode: darken;
background-color: gray;
}
.firstSection {
height: 100vh;
}
.box-main {
display: flex;
justify-content: center;
align-items: center;
color: white;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
max-width: 50%;
margin: auto;
height: 80%;
}
.firstHalf {
width: 65%;
display: flex;
flex-direction: column;
justify-content: center;
}
.secondHalf {
width: 30%;
}
.secondHalf img {
width: 70%;
border: 4px solid white;
border-radius: 150px;
display: block;
margin: auto;
}
.text-big {
font-size: 40px;
}
.text-small {
font-size: 17px;
}
.btn {
padding: 8px 20px;
margin: 7px 3px;
border: 2px solid white;
border-radius: 8px;
background: none;
color: white;
cursor: pointer;
}
.btn-sm {
padding: 6px 10px;
vertical-align: middle;
}
.btn-dark {
color: black;
background-color: burlywood;
border: 2px solid black;
}
.section {
height: 300px;
display: flex;
align-items: center;
justify-content: space-evenly;
max-width: 90%;
margin: auto;
}
.section-left {
flex-direction: row-reverse;
}
.paras {
padding: 0px 5px;
}
.contact {
height: 100%;
background-color: rgb(218, 213, 213);
}
.text-center {
text-align: center;
padding: 30px;
}
.form {
max-width: 300px;
margin: 42px auto;
}
.form input {
margin: 30px 0;
padding: 5px 3px;
width: 100%;
font-size: 19px;
border: 2px solid black;
border-radius: 6px;
}
.text-footer {
text-align: center;
padding-top: 30px;
display: flex;
justify-content: center;
}