-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (76 loc) · 1.26 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
margin: 0;
}
.container {
background: #dcdcdc;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.containerr {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
width: 90%;
background-color: white;
}
.box {
color: white;
text-align: center;
text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}
img {
height: 150px;
}
.box0 {
font-size: 50px;
flex-grow: 0;
flex-shrink: 0;
flex-basis: 100%;
background: #5c3a76;
padding-top: 0.125rem;
padding-bottom: 0.125rem;
}
.box1 {
flex-grow: 0;
flex-shrink: 0;
flex-basis: 33.333%;
}
.box2 {
flex-grow: 0;
flex-shrink: 0;
flex-basis: 66.666%;
background: #3498db;
}
.box2 a:link {
color: #172167;
}
.box3 {
flex-grow: 0;
flex-shrink: 0;
flex-basis: 100%;
background: brown;
}
@media screen and (max-width: 768px) {
.card {
width: 70%;
}
}
@media screen and (max-width: 570px) {
.box1 {
padding-top: 1rem;
padding-bottom: 1rem;
}
.box2 {
flex-basis: 100%;
}
}
@media screen and (min-width: 992px) {
.containerr {
width: 60%;
}
}