-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
132 lines (120 loc) · 2.3 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
* {
margin: 0px;
padding: 0px;
/* color: grey; */
}
.logo {
width: 20%;
display: flex;
justify-content: center;
align-items: center;
}
.logo img {
width: 70%;
/* border: solid white; */
border-radius: 50px;
}
.navbar {
background: transparent black;
display: flex;
position: sticky;
top: 0px;
cursor: pointer;
}
.nav-list {
width: 70%;
/* background-color: black; */
display: flex;
/* justify-content: center; */
align-items: center;
padding: 25px;
height: 54px;
}
.nav-list li {
list-style: none;
padding: 20px;
color: white;
font-size: 20px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-weight: bolder;
text-transform: capitalize;
text-shadow: grey;
/* width: 13%; */
}
.nav-list li a {
text-decoration: none;
color: white;
}
.nav-list li a:hover {
text-decoration: none;
color: rgb(26, 21, 21);
}
.rightnav {
/* background-color: blue; */
width: 50%;
text-align: right;
margin: 40px;
}
#search {
padding: 5px;
font-size: 17px;
border: 2px solid white;
border-radius: 16px;
}
.background {
background-image: url(bg2.jpg);
background-repeat: no-repeat;
background-size: 100% 100%;
background-blend-mode: darken;
opacity: 0.5;
z-index: -1;
/* background: center; */
}
.firstSection {
/* background-repeat: no-repeat; */
/* background-size: cover; */
padding: 80px;
/* background-blend-mode: darken; */
height: 70vh;
}
.box-main {
/* left: 10%; */
/* background-repeat: no-repeat; */
display: flex;
align-items: center;
justify-content: center;
color: white;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
max-width: 80%;
margin: auto;
font-size: 25px;
font-weight: bold;
}
.firstHalf {
width: 80%;
display: flex;
flex-direction: column;
justify-content: center;
}
.secondHalf {
width: 30%;
}
.btn {
padding: 7px;
margin: 5px 3px;
border: 2px solid snow;
border-radius: 20px;
font-size: 18px;
width: 15%;
cursor: pointer;
background: none;
color: white;
}
.btn-sn {
padding: 7px 18px;
vertical-align: middle;
background: none;
color: white;
border: 2px solid white;
border-radius: 10px;
}