-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (49 loc) · 1.01 KB
/
style.css
File metadata and controls
49 lines (49 loc) · 1.01 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
html, body {
margin: 10px;
padding: 10px;
background-image: linear-gradient(to bottom, #00FFFF, rgb(241, 253, 255));
background-repeat: no-repeat;
background-attachment: fixed; /* fixed doesnt scroll with the page, local will scroll with page contents, scroll is default and will scroll with the page */
background-position: center;
}
h1,h2,h3,h4,h5,h6 {
margin-top: 0;
font-family: 'Varela Round', sans-serif;
font-weight: bold;
}
body > * {
box-sizing: border-box;
font-size: 15px;
font-family: fantasy, sans-serif;
}
.items {
display: flex;
flex-direction: column;
}
.item {
background: white;
border-radius: 30px;
}
footer {
display: flex;
}
footer .column {
width: 33.33%;
}
footer a {
text-decoration: none;
color: gray;
}
@media (min-width: 650px) {
body > * {
box-sizing: border-box;
font-size: 1.25rem;
}
.items {
flex-direction: row;
}
.item {
background: white;
margin: 0 10px;
}
}