-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
151 lines (145 loc) · 2.79 KB
/
style.css
File metadata and controls
151 lines (145 loc) · 2.79 KB
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
* {
margin: 0;
padding: 0;
}
.header{
width: 1000px;
margin: 0 auto;
background-color: #B4C7E7;
display: flex;
justify-content: space-evenly;
}
.header img {
padding: 30px 30px;
}
.header div{
padding: 40px 10px;
border: 5px solid white;
margin: 20px;
margin-top: 0px;
background-color: #5B9BD5;
}
.header h1{
background-color: #ffff;
color: green;
padding: 5px 50px;
}
.intro{
width: 1000px;
margin: 0 auto;
background-color: #B4C7E7;
}
.intro p:first-child{
width: 876px;
padding: 5px;
margin: 0 auto;
background-color: #F8CBAD;
text-align: center;
font-size: 32px;
}
.about-us {
width: 876px;
padding: 5px;
margin: 0 auto;
border-top: 3px solid #ffff;
background-color: #C5E0B4;
/* text-align: center; */
font-size: 11px;
}
.main-body{
width: 1000px;
margin: 0 auto;
background-color: #B4C7E7;
display: flex;
justify-content: space-between;
padding-top:10px;
}
.nav-links ul li {
box-sizing: border-box;
list-style: none;
width: 100px;
height: 130px;
background-color: #FFE699;
padding: 20px;
padding-top: 30px;
border-top: 4px solid #B4C7E7;
}
.nav-links a{
text-decoration: none;
}
.nav-links {
margin-left: 57px;
display: flex;
padding-right:15px;
border-right:2px solid grey;
}
.heading {
background-color: #ffff;
margin-right: 58px;
display: flex;
font-size: 32px;
width: 700px;
margin-top: 10px;
}
.heading h1{
padding-left: 100px;
}
.row{
margin-top:5px;
margin-right: 55px;
display: flex;
justify-content: space-between;
}
.section1-col{
flex-basis: 32%;
background: gray;
border-radius: 10px;
box-sizing: border-box;
}
.section1-col img{
height: 150px;
width: 220px;
border-right: 2px solid black;
}
.section1-col:hover{
box-shadow: 0 0 20px 0px rgb(4, 8, 248);
}
.feedback {
background-color: #C5E0B4;
width: 700px;
margin-top: 30px;
flex-basis: 50%;
margin-bottom: 10px;
border: 1px solid green;
}
.feedback p{
background-color: green;
padding: 10px;
text-align: left;
margin-bottom: 10px;
}
.feedback-row{
margin-top:5px;
margin-right: 55px;
display: flex;
justify-content: space-around;
}
.imp-links{
background-color: #C5E0B4;
width: 700px;
margin-top: 30px;
flex-basis: 50%;
margin-bottom: 10px;
border: 1px solid green;
}
.imp-links a,li{
text-decoration: none;
list-style: none;
color: green;
margin-left: 30px;
}
.imp-links a:hover{
font-size: 12;
background-color: green;
color: #ffff;
}