-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
69 lines (59 loc) · 1.13 KB
/
index.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
* {
margin: 0;
}
body {
height: 100vh;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 1.25rem;
background-color: #0F2027;
color: #fff;
background-image: linear-gradient(to bottom, #2C5364, #203A43, #0F2027);
background-repeat: no-repeat;
}
header {
background-color: #273642;
min-height: 50px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
}
ul {
list-style: none;
}
.menu {
display: flex;
justify-content: center;
gap: 60px;
padding: 20px;
}
.menu a {
text-decoration: none;
color: #fff;
}
main {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
align-items: center;
text-align: center;
padding: 10px;
margin: 0 auto;
row-gap: 60px;
}
.about-cover {
margin-top: 20px;
}
.about-cover h1 {
padding: 20px;
}
.about-cover img {
max-width: 300px;
border-radius: 50%;
display: inline-block;
}
.about-summary {
line-height: 2rem;
justify-self: center;
text-align: left;
display: flex;
flex-direction: column;
gap: 20px;
max-width: 60ch;
}