-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
194 lines (189 loc) · 3.7 KB
/
style.scss
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
// Import Colors from wal
@import '/home/apatel435/.cache/wal/colors.scss';
body {
background-color: $color0;
margin: 0;
padding: 0;
font-family: "Fira Mono", monospace;
}
.pageContainer {
height: 100%;
width: 100%;
position: absolute;
}
.vertAlign {
position: relative;
top: 50%;
transform: translateY(-50%);
width: 800px;
margin: auto;
}
.boxContainer {
display: table;
width: 100%;
border-spacing: 26px 13px ;
}
.box {
display: table-cell;
width: 33.3%;
height: 120px;
text-align: center;
background-color: $color0;
border: 10px solid $color0;
padding: 10px;
-webkit-box-shadow: 7px 7px 5px 1px rgba(0,0,0,0.6);
-moz-box-shadow: 7px 7px 5px 1px rgba(0,0,0,0.6);
box-shadow: 7px 7px 5px 1px rgba(0,0,0,0.6);
}
#box1 {
outline: $color6 solid 4px;
-moz-transition:.4s ease-out;
-wekbit-transition:.4s ease-out;
transition:.4s ease-out;
}
#box2 {
outline: $color3 solid 4px;
-moz-transition:.4s ease-out;
-wekbit-transition:.4s ease-out;
transition:.4s ease-out;
}
#box3 {
outline: $color2 solid 4px;
-moz-transition:.4s ease-out;
-wekbit-transition:.4s ease-out;
transition:.4s ease-out;
}
#box4 {
outline: $color4 solid 4px;
-moz-transition:.4s ease-out;
-wekbit-transition:.4s ease-out;
transition:.4s ease-out;
}
#box5 {
outline: $color1 solid 4px;
-moz-transition:.4s ease-out;
-wekbit-transition:.4s ease-out;
transition:.4s ease-out;
}
#box6 {
outline: $color5 solid 4px;
-moz-transition:.4s ease-out;
-wekbit-transition:.4s ease-out;
transition:.4s ease-out;
}
.boxHeader {
font-size: 20px;
text-align: center;
vertical-align: middle;
height: 25px;
color: #000000;
}
#boxHeader1 {
background-color: $color6;
}
#boxHeader2 {
background-color: $color3;
}
#boxHeader3 {
background-color: $color2;
}
#boxHeader4 {
background-color: $color4;
}
#boxHeader5 {
background-color: $color1;
}
#boxHeader6 {
background-color: $color5;
}
#box1:hover {
outline: $color6 solid 10px;
-moz-transition:.4s;
-wekbit-transition:.4s;
transition:.4s;
}
#box2:hover {
outline: $color3 solid 10px;
-moz-transition:.4s;
-wekbit-transition:.4s;
transition:.4s;
}
#box3:hover {
outline: $color2 solid 10px;
-moz-transition:.4s;
-wekbit-transition:.4s;
transition:.4s;
}
#box4:hover {
outline: $color4 solid 10px;
-moz-transition:.4s;
-wekbit-transition:.4s;
transition:.4s;
}
#box5:hover {
outline: $color1 solid 10px;
-moz-transition:.4s;
-wekbit-transition:.4s;
transition:.4s;
}
#box6:hover {
outline: $color5 solid 10px;
-moz-transition:.4s;
-wekbit-transition:.4s;
transition:.4s;
}
a:link,
a:visited {
text-decoration: none;
color: $color7;
-moz-transition:.2s ease-out;
-wekbit-transition:.2s ease-out;
transition:.2s ease-out;
}
a:hover {
color: #FFFFFF;
-moz-transition:.2s;
-wekbit-transition:.2s;
transition:.2s;
}
ul {
list-style-type: none;
text-align: middle;
padding: 0;
font-size: 16px;
}
@media only screen and (max-width: 871px) {
.box {
display: block;
width: 75%;
margin-left: auto;
margin-right: auto;
margin-top: 26px;
}
.vertAlign {
transform: translateY(0%);
top: 0%;
bottom: 0%;
}
}
/*
.searchForm {
padding-left: 26px;
padding-right: 26px;
}
.searchInput {
width: 100%;
border: none;
margin: auto;
display: block;
padding: 5px 5px;
background-color: #343d46;
border: 10px solid #28323b;
-webkit-box-shadow: 7px 7px 5px 1px rgba(0,0,0,0.6);
-moz-box-shadow: 7px 7px 5px 1px rgba(0,0,0,0.6);
box-shadow: 7px 7px 5px 1px rgba(0,0,0,0.6);
font-size: 16pt;
color: #afffa3;
outline: $color6 solid 4px;
}
*/