-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset.css
More file actions
82 lines (68 loc) · 1.07 KB
/
Copy pathreset.css
File metadata and controls
82 lines (68 loc) · 1.07 KB
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
html {
font: 20px/1.2;
/*
font-family: 'Cairo', sans-serif;
font-family: 'Literata', serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Raleway', sans-serif;
*/
/* Photo by Kari Shea on Unsplash */
}
* {
box-sizing: border-box;
}
body, body * {
background-color: white;
margin: unset;
box-sizing: unset;
padding: unset;
font-size: unset;
color: unset;
text-decoration: unset;
list-style: none;
}
/* Scale Text */
.grow {
transition: all 1s ease-in-out;
}
.grow:hover {
transform: scale(1.1);
}
/* fade */
.fade
{
opacity:0.7;
}
.fade:hover
{
opacity:1;
}
/* .column {
float: left;
width: 50%;
}
.row:atfer {
content: "";
display: table;
clear: both;
} */
.row {
display: flex;
justify-content: space-around;
align-items: center;
}
.column {
flex: 50%;
padding: 10px;
/* height: 300px; Should be removed. Only for demonstration */
}
@media screen and (max-width: 768px) {
.row {
margin: 0 auto;
flex-wrap: wrap;
}
.column {
padding: 0;
width: 100%;
}
}