-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
97 lines (85 loc) · 1.71 KB
/
Copy pathoptions.css
File metadata and controls
97 lines (85 loc) · 1.71 KB
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
/* Handles the background color and padding relative to entire browser page */
html, body {
padding: 0;
margin: 0;
background: rgb(96,47,47);
background: linear-gradient(45deg, rgba(96,47,47,0.2) 0%, rgba(218,228,227,0.4) 0%, rgba(193,239,252,0.5) 100%);
min-height: 100%;
min-width: 100%;
overflow: auto;
}
/* Handles the grid specifications for the wrapper class */
.wrapper {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
width: 100vw;
height: 100vh;
position: absolute
}
.div1 { /* left navbar side */
grid-area: 1 / 1 / 5 / 2;
border-right: 3px solid white;
background-color: #ceebf4
}
.div2 { /* left middle */
grid-area: 1 / 2 / 3 / 4;
border-right: 3px solid white;
overflow: auto;
}
.div3 { /* right middle */
grid-area: 1 / 4 / 3 / 6;
overflow: auto;
}
.div4 { /* bottom */
grid-area: 3 / 2 / 5 / 6;
border-top: 3px solid white;
}
.table {
display: table; /* Allow the centering to work */
margin: 0 auto;
}
/* Handles position of icon bar */
.icon-bar {
position: relative;
margin-left: 40%;
margin-right: 40%;
}
/* Styles the icon bar links */
.icon-bar a {
display: inline-block;
text-align: center;
padding: 10px;
transition: all 0.3s ease;
color: black;
font-size: 25px;
}
/* Style the social media icons with color, if you want */
.icon-bar a:hover {
background-color: #fff;
}
.facebook {
color: black;
}
.twitter {
color: black;
}
.google {
color: black;
}
a:hover {
color: blue;
}
/* Styles the hr line above "version" */
hr {
margin-left: 40%;
margin-right: 40%;
border-color: black;
border-top: 3px;
}
.extrastuff {
margin-top: 20%;
text-align: center;
}