-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.css
More file actions
55 lines (47 loc) · 733 Bytes
/
home.css
File metadata and controls
55 lines (47 loc) · 733 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
body {
margin: 1rem;
}
.wrapper {
display: flex;
flex-direction: row;
height: calc(100vh - 5rem);
}
header {
background-color:rgb(177, 177, 177);
height: 3rem;
font-size: 30px;
border: 1px solid black;
text-align: center;
line-height: 3rem;
}
.sidebar_left {
display: inline;
background-color: rgb(177, 177, 177);
width: 20%;
border: 1px solid red;
display: flex;
flex-direction: column;
}
#Info {
padding: 1rem;
line-height: 2rem;
}
#Category {
padding: 1rem;
}
.center {
background-color: rgb(216, 216, 216);
width: 60%;
border: 1px solid green;
}
#Contents {
padding: 1rem;
}
.sidebar_right {
background-color: rgb(177, 177, 177);
width: 20%;
border: 1px solid blue;
}
#Result {
padding: 1rem;
}