forked from DysfunctionalCoders/week-1-Homework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
84 lines (80 loc) · 1.28 KB
/
styles.css
File metadata and controls
84 lines (80 loc) · 1.28 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
83
84
body{
font-family: system-ui;
background: #000;
color: white;
}
.wrapper{
min-height: 100vh;
background: #000;
display: flex;
flex-direction: column;
}
.content {
display: flex;
flex: 1;
background: #000;
color: #000;
}
.columns{
display: flex;
flex:1;
text-align: left;
}
.main{
flex: 1;
order: 2;
background: #fff;
text-align: left;
padding: 1em;
}
.sidebar-first{
width: 33%;
background: #fff;
order: 1;
margin-right: 1em;
text-align: center;
padding: 1em;
}
.sidebar-second{
width: 33%;
order: 3;
background: #fff;
margin-left: 1em;
text-align: left;
padding: 1em;
}
h1{
text-align: center;
font-size: 20px;
border-top: .5em solid black;
border-bottom: .5em solid black;
}
h2{
text-align: center;
font-size: 20px;
text-decoration: underline;
}
h3{
text-align: center;
font-size: 20px;
}
h4{
text-align: center;
font-size: 20px;
text-decoration: underline overline;
}
a{
text-align: center;
font-size: 20px;
text-decoration: none;
color:#000;
}
img {
width: 80%;
margin: 2em;
align-self: center;
}
p {
margin: 0;
text-indent: 0em
}