-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (81 loc) · 1.12 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
body {
font-family: "Poppins", sans-serif;
margin: 18px;
background-color: #faf9f6;
display: flex;
flex-direction: column;
min-height: max-content;
}
.main {
padding: 3%;
border: 2px solid black;
flex: 1;
}
.creative{
color: purple;
}
.card{
/* border: 2px solid black; */
/* margin: 20px; */
/* display: inline-block; */
width: 45%;
/* height: auto; */
}
.left{
float: left;
}
.right{
float: right;
}
.main div img[class=tile-image]{
height: 166px;
float: left;
margin-right: 40px;
}
h1 {
font-size: 5rem;
}
footer {
text-align: right;
color: midnightblue;
}
@media (max-width:722px)
{
.main{
border: 2px solid black;
}
.creative{
color: purple;
}
.logo{
width: 100px;
}
body > div > h1{
font-size: 2.8rem;
text-align: center;
}
.card{
display: block;
}
.left{
float: none;
}
.right{
float: none;
}
.tile-image{
display: block;
width: 216%;
}
/* body > div > div.left.card > p{
width: 227%;
} */
.card-title{
display: block;
margin-top: 10%;
}
.card-text{
display: block;
width: 227%;
}
}