-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
43 lines (42 loc) · 859 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
*{
margin: 0;
padding: 0;
background-color: rgb(24, 18, 1);
color: aliceblue;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
nav{
background-color: rgb(163, 127, 6);
height: 8vh;
min-height: 35px;
display: flex;
align-items: center;
}
nav h1{
background-color: rgb(163, 127, 6);
margin: 3vw;
}
main{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.site {
margin: 20px;
border: 10px solid rgb(85, 65, 1);
width: 18rem;
}
.site img {
max-width: 100px;
height: auto;
margin: 10px;
float: left;
border: 1px solid rgb(85, 65, 1) ;
border-radius: 50%;
}
.site h2 {
margin: 0;
}
.site p {
clear: both;
}