forked from OpenSourceZongo/opensourcezongo.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
140 lines (117 loc) · 2.1 KB
/
Copy pathstyle.css
File metadata and controls
140 lines (117 loc) · 2.1 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
/* Reset some default browser styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: Quicksand;
src: url("Quicksand.ttf");
}
@font-face {
font-family: Pacifico;
src: url("Pacifico-Regular.ttf");
}
@font-face {
font-family: LuckiestGuy;
src: url("LuckiestGuy-Regular.ttf");
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
background-color: #f9f9f9;
color: #333;
}
p{
font-family: Quicksand;
font-weight: 500;
}
.container {
width: 90%;
max-width: 960px;
margin: auto;
padding: 20px;
}
header {
background: #1d3557;
color: #fff;
padding: 0px 0;
}
header h1 {
text-align: center;
font-family: LuckiestGuy;
}
nav ul {
display: flex;
justify-content: center;
list-style: none;
margin-top: 10px;
}
nav ul li {
margin: 0 15px;
}
nav a {
color: #f1faee;
text-decoration: none;
}
.hero {
background: #457b9d;
color: #fff;
padding: 60px 0;
text-align: center;
}
.hero .btn {
display: inline-block;
margin-top: 20px;
padding: 10px 25px;
background: #e63946;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.section {
padding: 40px 0;
}
.section h3 {
margin-bottom: 20px;
color: #1d3557;
}
.section ul {
list-style-type: none;
}
footer {
background: #1d3557;
color: #fff;
text-align: center;
padding: 20px 0;
margin-top: 40px;
}
.splash-banner{
background-image: url("./images/banner-splash.webp");
background-blend-mode: multiply;
background-size: cover;
background-position: bottom center;
}
.team-carousel{
display: grid;
}
@media screen and (max-width: 400px){
.team-carousel{
grid-template-columns: 1fr;
}
.team-carousel img{
width: 100%;
height: auto;
margin: 10vh 0px 2vh 0px;
}
.gallery p{
text-align: center;
font-style: italic;
}
.gallery img{
width: calc(100vw - 20px);
height: auto;
margin: 20px auto 5px auto;
display: block;
}
}