blob: e1566b62279cdc096961daf2e944e2b34e034dbb (
plain)
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
94
95
96
97
98
99
100
101
|
$navbar-height: 120px;
$pathbar-height: 50px;
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: "Open Sans";
}
.homeContainer {
position: relative;
top: 200px;
overflow: scroll;
width: 100%;
left: 0;
height: calc(100% - 120px);
overflow-y: scroll;
}
.homeButton {
width: 96%;
margin-left: 2.5%;
height: 250px;
border-radius: 30px;
margin-top: 15px;
margin-bottom: 15px;
}
.iconRight {
position: absolute;
width: 50%;
height: 80px;
transform: translate(0, 50%);
right: 0px;
text-align: center;
font-size: 80;
}
.iconLeft {
position: absolute;
width: 50%;
height: 80px;
transform: translate(0%, 50%);
left: 0px;
text-align: center;
font-size: 80;
}
.textLeft {
position: absolute;
width: 50%;
left: 0px;
font-size: 40px;
text-align: left;
margin-left: 110px;
margin-top: 40px;
font-family: sans-serif;
font-weight: bold;
}
.textRight {
position: absolute;
width: 50%;
right: 0px;
font-size: 40px;
text-align: right;
margin-right: 110px;
margin-top: 40px;
font-family: sans-serif;
font-weight: bold;
}
.menuView {
position: absolute;
top: 135px;
left: 50%;
transform: translate(-50%, 0%);
display: flex;
}
.iconView {
height: 60px;
width: 60px;
background-color: darkgray;
border-radius: 5px;
border-style: solid;
border-width: 2px;
border-color: black;
}
.listView {
height: 60px;
width: 60px;
margin-left: 20;
background-color: darkgray;
border-radius: 5px;
border-style: solid;
border-width: 2px;
border-color: black;
}
|