-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
157 lines (133 loc) · 2.89 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
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
font-size: 16px;
}
.container {
width: 80%;
margin: 0 auto;
}
#navbar {
background-color: #399999;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
#navbar ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-between; /* Distribute items equally */
}
#navbar a {
text-decoration: none;
color: #fff;
transition: color 0.3s;
}
#navbar a:hover {
color: #00cccc; /* Lighter teal blueish-green color on hover */
}
section {
height: 70vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
#home {
background-color: #e0f2f1; /* Light teal blueish-green background */
}
#about {
background-color: #b2dfdb; /* Slightly darker teal blueish-green background */
}
#download {
background-color: #80cbc4; /* Even darker teal blueish-green background */
height : 60vh;
}
#contact {
background-color: #4db6ac; /* Darkest teal blueish-green background */
height : 40vh;
}
#home .container,
#about .container,
#download .container{
display: flex;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
}
#home .text-container,
#about .text-container,
#download .text-container {
flex: 1;
padding: 20px;
text-align: justify;
max-width: 50%; /* Adjust the width of the text container as needed */
}
#home .image-container,
#about .image-container,
#download .image-container{
flex: 1;
padding: 10px;
max-width: 50%; /* Adjust the width of the image container as needed */
}
#home img,
#about img,
#download img{
max-width: 100%;
height: auto;
}
#download a{
color: #07796d;
text-decoration: underline;
}
#contact .container {
text-align: center;
color: #fff;
}
#contact p {
margin-bottom: 20px;
}
#contact .social-media-links {
list-style-type: none;
padding: 0;
}
#contact .social-media-links li {
display: inline-block;
margin-right: 10px;
}
#contact input {
padding: 5px;
margin-bottom: 10px;
}
#contact button {
padding: 5px 10px;
background-color: #008080; /* Teal blueish-green color for button */
color: #fff;
border: none;
cursor: pointer;
}
#contact button:hover {
background-color: #005151; /* Darker teal blueish-green color on hover */
}
@media screen and (max-width: 600px) {
body {
font-size: 14px;
}
#navbar ul {
flex-direction: column;
align-items: center;
text-align: center;
}
#navbar ul li {
margin-bottom: 10px;
}
.text {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}