-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
174 lines (150 loc) · 2.58 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
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
.main{
width: 100%;
min-height: 100vh;
padding-left: 0%;
padding-right: 0%;
box-sizing: border-box;
overflow: hidden;
}
.navbar{
width: 100%;
display: flex;
align-items: center;
/*!Changes Color of Navbar!*/
background-color: rgb(100, 100, 100)
}
.logo {
width: 250px;
cursor: pointer;
margin: 20px 5px;
}
.menu_dropdown{
width: 25px;
cursor: pointer;
display: none;
}
nav{
flex: 1;
text-align: right;
}
nav ul li{
list-style-type: none;
display: inline-block;
margin-right: 30px;
}
nav ul li a {
color: #000;
font-size: 14px;
text-decoration: none;
}
nav ul li a:hover{
color:cornflowerblue;
text-decoration: underline;
text-shadow: #000;
text-shadow: 3px;
}
.row{
display: flex;
justify-content: space-around;
align-items: center;
margin: 100px 0px;
}
.col_main{
flex-basis: 40%;
position: relative;
margin-left: 5px;
margin-right: 5px;
}
.col_main h2{
font-size: 56px;
}
.col_main h4{
font-size: 30px;
color: darkslategray;
font-weight: 100;
margin: 20px 0 10px;
}
button{
width: 170px;
border: 0;
padding: 10px 10px;
outline: lightcyan;
color: darkgrey;
font-size: 20px;
transition: width .5s;
transition: font-size 0.7s;
}
button:hover{
cursor: pointer;
font-size: 22px;
width: 180px;
color: #a89179;
}
table,th,td{
border: 2px solid black;
border-collapse: collapse;
}
@media only screen and (max-width:700px){
nav ul{
width: 100%;
background: grey;
position: absolute;
top: 10%;
right: 0;
z-index: 2;
}
nav ul li{
display: block;
margin-top: 10px;
margin-bottom: 10px;
}
nav ul li a{
color: #fff;
}
.menu_dropdown{
display: block;
}
#menuList{
overflow: hidden;
transition: 0.5s;
max-height: 140px;
}
footer ul{
position: relative;
background: #b5ada5;
}
}
.search_bar{
font-size: larger;
}
footer{
width: 100%;
display: flex;
align-items: center;
/*!Changes Color of Navbar!*/
background-color: #b5ada5;
padding: 10px 0px 10px 0px;
overflow:hidden;
text-align: center;
}
footer ul{
text-align: center;
}
footer ul li{
padding-right: 10%;
padding-left: 10%;
}
.body_p_i p{
text-align: center;
}
.body_p_i h2{
text-align: center;
}
.body_p_i h1{
text-align: center;
}