-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.css
65 lines (54 loc) · 1 KB
/
about.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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Merriweather:wght@700&display=swap');
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
}
.header {
background: #00274c;
font-family: 'Merriweather', serif;
color: white;
padding: 15px;
display: flex;
align-items: center;
}
.header h1 {
margin: 0;
padding-left: 10px;
}
.nav {
background: #3D5A80;
padding: 10px;
display: flex;
justify-content: space-around;
}
.home {
border-right: 2px solid;
padding-right: 500px;
}
.nav a {
color: white;
text-decoration: none;
font-size: 16px;
}
.images-container {
display: flex;
justify-content: center;
align-items: center;
gap: 75px;
padding-bottom: 40px;
}
.images {
width: 350px;
height: 300px;
}
.content {
padding: 20px;
}
.paper {
color: blue;
cursor: pointer;
}
.paper:hover{
color: red;
}