-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
62 lines (51 loc) · 951 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
61
62
body{
background-color: hsl(212, 45%, 89%);
text-align: center;
font-family: 'Outfit', sans-serif;
font-weight: 400, 700
}
.container{
width: 300px;
height: 440px;
border: 0px solid white;
border-radius: 10px;
background-color: hsl(0, 0%, 100%);
margin: 200px auto;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.code-img{
border: 0px solid white;
border-radius: 10px;
width: 270px;
margin-top: 10px;
align-items: center;
}
h1{
font-size: 22px;
}
p{
color: hsl(220, 15%, 55%);
font-size: 15px;
}
.attribution {
font-size: 13px;
text-align: center;
color: ;
}
.attribution a {
color: hsl(243, 58%, 45%);
}
footer{
position: fixed;
bottom: 0;
width: 100%;
height: 60px;
}
@media screen and (max-width :375px){
.container,.code-img{
width: 100%;
}
}