-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.css
214 lines (184 loc) · 3.78 KB
/
options.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
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
margin: 0 auto;
max-width: 1300px;
font-family: 'Segoe UI';
overflow-y: hidden;
background-color: #ffffff;
}
header {
position: relative;
display: flex;
background-color: #3B404C;
color: #ffffff;
padding: 20px;
justify-content: center;
}
header img {
width: 55px;
height: 55px;
}
header h1 {
margin-top: -8px;
font-size: 50px;
font-weight: 350;
}
.main {
padding: 20px 20px 20px 20px;
height: calc(100vh - 204px);
}
.main .upper{
display: flex;
margin: 40px 0 30px 0;
}
h2 {
color: #3B404C;
font-size: 25px;
font-weight: 500;
}
.main .upper .badge {
display: flex;
font-size: 20px;
color: #ffffff;
background-color: #3B404C;
height: 28px;
align-items: center;
padding: 2px 10px;
border-radius: 40px;
margin: 5px 0 0 15px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.main .upper .badge:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
cursor: pointer;
}
.main .lower .workspace {
padding: 40px 30px;
}
.main .lower .workspace ul {
list-style-type: none;
top: 25px;
display: grid;
grid-template-columns: 30% 30% 30%;
}
.main .lower .workspace ul li{
display: flex;
margin-bottom: 10px;
margin-left: 20px;
}
.main .lower .workspace li p {
background-color: #3B404C;
color: #ffffff;
padding: 5px 20px;
border-radius: 20px;
font-size: 18px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.main .lower .workspace li p:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
cursor: pointer;
}
.main .lower .workspace li button img{
width: 60%;
}
.main .lower .workspace li button{
background-color: #ffffff;
border: 1px solid #3B404C;
padding: 0 5px;
display: flex;
align-items: center;
justify-content: center;
margin-left: 10px;
border-radius: 20px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.main .lower .workspace li button:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
cursor: pointer;
}
.main .lower .workspace li button:focus {
outline: none;
}
.main .lower .workspace li button:hover {
background-color: rgb(235, 235, 235);
}
footer {
position: relative;
display: flex;
background-color: #3B404C;
color: #ffffff;
height: 105px;
justify-content: center;
}
footer a {
display: flex;
margin: auto 20px;
background-color: #ffffff;
color: #3B404C;
width: 300px;
height: 65px;
justify-content: center;
align-items: center;
border-radius: 50px;
font-size: 22px;
font-weight: 600;
text-decoration: none;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
footer a:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
cursor: pointer;
}
footer .second img {
width: 40px;
height: 35px;
margin-right: 20px;
}
footer .second #firstText {
font-weight: 500 !important;
}
footer .second #secondText {
font-size: 16px !important;
position: relative;
top: -5px;
margin-left: 30px;
font-weight: 400 !important;
}
@media only screen and (max-width: 876px) {
footer a {
height: 50px;
width: 200px;
font-size: 16px;
}
footer .second img {
margin-right: 5px;
width: 35px;
height: 30px;
}
}
/*error message */
#emptyWorkspace {
text-align: center;
font-size: 16px;
color: red;
}
/* me */
.developer p {
position: absolute;
font-family: 'Courier New', Courier, monospace;
top: 78%;
left: 50%;
transform: translate(-50%);
font-size: large;
font-weight: 600;
font-size: 20px;
color: #3B404C;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}
.developer p span:hover {
cursor: pointer;
}