-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (55 loc) · 852 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
body{
width: 375px;
height: 812px;
background-color: hsl(0, 0%, 8%);
}
#main-box{
width: 325px;
height: 480px;
background-color: hsl(0, 0%, 12%);
padding: 25px;
border-radius: 15px;
}
button{
color: white;
background-color: hsl(0, 0%, 20%);
}
h3{
color: hsl(75, 94%, 57%);
}
h1,p{
color: white;
}
#box1{
text-align: center;
}
img{
height: 85px;
width: 85px;
border-radius: 50px;
}
ul{
list-style: none;
text-align: center;
}
button{
height: 35px;
width: 250px;
border-radius: 5px;
margin: 5px;
font-weight: bold;
}
button:hover{
background-color: hsl(75, 94%, 57%);
color: black;
}
/* Larger screen */
@media (min-width:1200px) {
#main-box{
margin: 45px 525px;
}
.attribution{
width: 1200px;
margin: 100px;
}
}