-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (37 loc) · 812 Bytes
/
style.css
File metadata and controls
40 lines (37 loc) · 812 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
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #222222;
color: #DDDDDD;
}
.heading {
background-color: orange;
color: #222222;
text-align: center;
padding: 50px 0;
font-size: 32px;
font-weight: bold;
margin: -8px;
position: relative;
width: calc(100% + 16px);
margin-bottom: 20px;
}
.main-container {
display: flex;
max-width: 1000px;
height: auto;
margin: auto;
border: 2px solid #DDDDDD;
border-radius: 15px;
padding: 15px;
box-sizing: border-box;
flex-wrap: wrap;
justify-content: center;
}
.main-container > * {
max-width: 480px;
margin: 0 10px;
flex-grow: 1;
}
a {
color: white;
}