-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (88 loc) · 1.35 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* Default screen */
body {
height: 1966px;
width: 375px;
background-color: hsl(0, 0%, 81%);
}
#main-box {
height: 1822px;
width: 330px;
}
#box1 {
height: 425px;
background-color: hsl(263, 55%, 52%);
color: white;
}
#box2 {
height: 245px;
background-color: hsl(217, 19%, 35%);
color: white;
}
#box3 {
height: 225px;
background-color: hsl(0, 0%, 100%);
color: gray;
}
#box4 {
height: 385px;
background-color: hsl(219, 29%, 14%);
color: white;
}
#box5 {
height: 495px;
background-color: hsl(0, 0%, 100%);
color: grey;
}
.box {
border-radius: 10px;
padding: 15px;
margin: 15px;
}
ul {
list-style: none;
display: flex;
}
ul li img {
border-radius: 50px;
}
p {
opacity: 70%;
}
i {
font-style: normal;
opacity: 50%;
}
.attribution {
margin-top: 175px;
margin-left: -50px;
}
/* Larger screen */
@media (min-width:1200px) {
body {
width: 1440px;
height: 960px;
}
#main-box,#indiv1,#indiv2 {
display: flex;
}
#box5 {
height: 600px;
width: 300px;
}
#box4 {
height: 250px;
width: 600px;
}
#box3 {
height: 250px;
width: 275px;
}
#box2 {
height: 300px;
width: 250px;
}
#box1 {
width: 625px;
height: 330px;
}
}