-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
143 lines (118 loc) · 2.74 KB
/
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
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
html {
width: 350px;
height: 240px;
min-height: 240px;
overflow: auto;
}
body {
font-family: 'Open Sans', 'Roboto', 'Helvetica', 'Arial';
width: 100%;
}
h1 {
width: 100%;
}
p {
padding-right: 16px;
width: 92%;
}
button {
border-radius: 2px;
border: none;
background: #2196F3;
padding: 6px 16px;
color: #ffffff;
outline: none;
/* box-shadow: 0; */
transition: all .2s ease-in;
}
button:hover {
-webkit-box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12) !important;
box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12) !important;
background: rgb(62, 164, 248);
}
button:active {
-webkit-box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2), 0px 5px 8px 0px rgba(0,0,0,0.14), 0px 1px 14px 0px rgba(0,0,0,0.12) !important;
box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2), 0px 5px 8px 0px rgba(0,0,0,0.14), 0px 1px 14px 0px rgba(0,0,0,0.12) !important;
}
a {
color: rgb(28, 129, 211);
cursor: pointer;
text-decoration: none;
}
.ico_btn_dark svg {
border-radius: 100px;
transition: all .2s ease-in;
}
.ico_btn_dark svg:hover {
background: #00000013;
}
.ico_btn_dark svg:active {
background: #00000038;
}
.ico_btn_light svg {
border-radius: 100px;
transition: all .2s ease-in;
}
.ico_btn_light svg:hover {
background: #ffffff13;
}
.ico_btn_light svg:active {
background: #ffffff38;
}
#mainBar {
background: #ec407a;
margin: 0;
padding: 16px 0 10px 16px;
position: fixed;
top: 0;
right: 0;
left: 0;
color: #ffffff;
z-index: 4;
font-size: 120%;
/* font-size: 20px; */
box-shadow: 0 3px 3px rgb(151, 149, 149);
}
#searchBar {
margin: 0 0 0 0; /* Initially, not visible to user */
background: rgb(236, 241, 241);
padding: 4px 0 1px 16px;
position: fixed;
left: 0;
width: 100%;
overflow: hidden;
z-index: 2;
transition: all .3s ease-in-out;
}
#wordBar {
margin: 45px 0 0 0;
background: rgb(236, 241, 241);
padding: 8px 0 8px 16px;
position: fixed;
left: 0;
width: 100%;
overflow: hidden;
z-index: 2;
}
#defBox {
margin-top: 90px;
position: absolute;
z-index: 1;
padding-left: 9px;
}
input[type="text"] {
background: none;
border: none;
border-bottom: solid 2px rgb(196, 196, 199);
padding: 10px 5px 3px 5px;
outline: none;
margin-bottom: 5px;
width: 90%;
transition: all .3s ease-in-out;
}
input[type="text"]:hover {
border-bottom: solid 2px rgb(172, 192, 247);
}
input[type="text"]:focus {
border-bottom: solid 2px rgb(53, 117, 255);
}