-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
56 lines (53 loc) · 966 Bytes
/
Copy pathabout.css
File metadata and controls
56 lines (53 loc) · 966 Bytes
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
* {
box-sizing: border-box;
}
body {
background-color: #f1f1f1;
padding: 20px;
font-family: Arial;
background-image: url('images/michael.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
h2{
background-color: rgba(255, 255, 255, 0.692);
}
.main {
max-width: 1000px;
margin: auto;
}
h1 {
font-size: 50px;
word-break: break-all;
}
.row {
margin: 8px -16px;
}
.row,
.row > .column {
padding: 8px;
}
.column {
float: left;
width: 25%;
}
.row:after {
content: "";
display: table;
clear: both;
}
.content {
background-color: rgba(255, 255, 255, 0.589);
padding: 10px;
}
@media screen and (max-width: 900px) {
.column {
width: 50%;
}
}
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}