forked from HackYourFuture/JavaScript3
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (61 loc) · 936 Bytes
/
style.css
File metadata and controls
64 lines (61 loc) · 936 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
57
58
59
60
61
62
63
64
#root {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
@media screen and (max-width: 768px) {
.h1.h1 {
width: 100%;
}
.right-div {
width: 100%;
}
.left-div {
width: 100%;
}
}
.alert-error {
color: red;
}
.h1 {
text-align: center;
}
.container {
display: flex;
flex-direction: row;
align-items: flex-start;
margin: 10px;
}
.right-div {
color: green;
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
margin: 10px;
flex-grow: 1;
height: 200px;
width: 200px;
}
.left-div {
color: brown;
display: flex;
flex-wrap: wrap;
flex-direction: column;
flex-grow: 1;
align-items: right;
margin: 10px;
}
header {
width: 800px;
height: 70px;
background-color: purple;
text-emphasis-color: white;
text-align: left;
}
.info-container {
text-align: left;
width: 40;
height: 30;
}