-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (60 loc) · 965 Bytes
/
style.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
html{
height: 100%;
}
body{
display: grid;
grid-gap: 5px;
grid-template-rows: 0.3fr 5fr;
width: 100%;
height: 100%;
}
main{
display: grid;
grid-gap: 5px;
grid-template-columns: 0.3fr 1fr 0.3fr;
}
.columnView{
display: grid;
grid-gap: 5px;
grid-template-rows: 1fr 1fr 1fr;
}
.columnWork{
display: grid;
grid-template-rows: 2fr 1fr;
grid-gap: 5px;
}
.columnLook{
display: grid;
grid-gap: 5px;
grid-template-rows: 1fr 1fr;
}
.diagram{
display: flex;
justify-content: center;
align-items: center;
}
.meetings{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.namePanel{
margin: auto;
}
.panels{
display: grid;
grid-template-rows: 1fr 5fr;
border: 2px solid grey;
border-radius: 5px;
}
.navigationMenu{
display: grid;
font-size: xx-large;
}
.codeIframe{
display: grid;
grid-template-rows: 7fr 1fr 1fr;
border: 2px solid grey;
border-radius: 5px;
}