-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (48 loc) · 1000 Bytes
/
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
*{
margin: 0;
padding: 0;
}
body{
/* background-image: linear-gradient(to bottom, #df81b7 0%, #2f1b31 100%),
repeating-radial-gradient(circle at center, #fff, #fff 10px, #2c3e50 10px, #2c3e50 20px);*/
font-family: Georgia, 'Times New Roman', Times, serif;
}
nav {
background-color: rgb(187, 126, 169);
display: flex;
padding: 15px;
gap: 1rem;
justify-content: center;
}
a {
color: #fbf8f8;
align-items: center;
padding-top: 25px;
text-decoration: none;
float: left;
justify-content: center;
}
section {
padding: 80px;
text-align: center;
}
#about {
background-color: #edcef3;
margin: 20px auto;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/*max-width: 600px;*/
padding: 30px;
}
img {
width: 90vw;
height: 70vh;
}
footer {
text-align: center;
padding: 20px;
background-color: #cc7fc6;
color: white;
position: relative;
bottom: 0;
}