forked from sebastian-graeff/jointhepump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylethepump.css
138 lines (119 loc) · 2.08 KB
/
stylethepump.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
body {
background-color: white;
font-family: 'Poppins', sans-serif;
margin: 0;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
border-bottom: 1px solid gray;
}
.logo {
height: 50px;
}
.menu-items {
display: flex;
align-items: center;
}
.menu-item {
margin-right: 40px;
font-size: 18px;
font-family: 'Poppins', sans-serif;
font-weight: bold;
text-decoration: none;
color: rgba(36, 36, 36, 0.8);
}
.menu-item.donate {
background-color: black;
border-radius: 50px;
padding: 10px 20px;
color: rgba(255, 255, 255, 0.9);
}
.menu-item:hover {
text-decoration: none;
color: rgba(3, 196, 255, 0.8);
transform: scale(1.2);
transition: transform 0.2s ease-in-out;
}
.container {
display: flex;
flex-direction: row;
height: 101vh;
}
.left, .right {
width: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.title {
text-align: center;
}
.title h1 {
font-size: 38px;
font-weight: bold;
margin-top: -100px;
margin-left: 90px;
margin-right: 90px;
margin-bottom: 50px;
}
.title p {
font-size: 24px;
font-family: 'Poppins', sans-serif;
line-height: 1.5;
margin-top: 0px;
margin-left: 120px;
margin-right: 120px;
margin-bottom: 50px;
}
.right {
height: 100%;
position: relative;
}
.right iframe {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
border: none;
}
h1 {
font-size: 48px;
font-weight: bold;
}
.partners-section {
background-color: rgba(228, 227, 227, 0.3);
border-radius: 50px;
padding: 50px;
margin-top: 100px;
max-width: 1600px;
margin-left: auto;
margin-right: auto;
}
.partners-title {
font-family: 'Poppins', sans-serif;
font-size: 28px;
font-weight: 500;
text-align: center;
margin-bottom: 50px;
}
.partners-list {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.partner-logo {
max-height: 80px;
margin: 0 30px 30px 0;
}
.separator {
border-top: 1px solid gray;
margin: 50px 0;
}