-
Notifications
You must be signed in to change notification settings - Fork 0
/
challenge.css
93 lines (80 loc) · 1.37 KB
/
challenge.css
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
85
86
87
88
89
90
91
92
93
* {
margin: 0;
padding: 0;
}
nav {
display: flex;
justify-content: flex-start;
width: 100%;
}
nav div{
display:flex;
justify-content: flex-end;
align-items: center;
width: 75%;
background-color: black;
}
main {
display: flex;
justify-content: space-between;
align-items: stretch;
width: 95%;
margin: 25px auto;
}
.green_link {
background-color: green;
color: white;
padding: 20px;
width: 25%;
}
.green_link:hover {
color: #1182EB;
background-color: black;
}
.black_link {
background-color: black;
color: white;
padding: 0 20px;
width: 200px;
text-align: right;
}
.black_link:hover {
color: #1182EB;
background-color: white;
}
.panel_list{
width: 60%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.right_panel {
width: 40%;
border: 3px solid black ;
padding: 20px;
margin: 15px;
}
panel {
list-style: none;
border: 3px solid black ;
padding: 20px;
margin: 15px;
display: flex;
}
.distribution_space_between {
justify-content: space-between;
}
.distribution_flex_end {
justify-content: flex-end;
}
.distribution_flex_start {
justify-content: flex-start;
}
cube {
display: block;
background-color: black;
color: beige;
width: 100px;
height: 100px;
margin: 0px 20px;
}