-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
60 lines (50 loc) · 926 Bytes
/
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
@import url('https://fonts.googleapis.com/css?family=Salsa');
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
a {
text-decoration: none;
}
h1 {
font-family: 'Salsa', cursive;
}
.container {
width: 400px;
margin: 0 auto;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.design-systems {
width: 300px;
padding: 0;
}
.design-systems li {
list-style: none;
padding: 10px 20px;
margin: 10px;
border: 2px solid rgb(255, 215, 0);
border-radius: 10px;
background-color: rgb(255, 250, 240);
}
.design-systems li span:nth-child(1) {
width: 30px;
margin-right: 10px;
text-align: center;
}
.design-systems li img {
height: 30px;
}
.design-systems li a {
text-align: left;
color: hsl(180, 25%, 25%);
font-weight: bold;
display: flex;
align-items: center;
}
.footer {
text-align: center;
color: hsla(180, 25%, 25%, 0.5);
}