-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathstyle.css
121 lines (105 loc) · 1.81 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
*{
margin: 0;
padding: 0;
font-family: "Nanum Gothic", sans-serif;;
}
ul {
list-style: none;
}
.ui.title {
text-align: center;
margin-top: 40px;
}
.hexBox {
text-align: center;
font-size: 22px;
font-weight: 300;
padding: 4px;
margin: 12px 0px;
}
.container {
width: 50%;
margin: auto;
}
.search {
width: 100%;
margin: 12px 0px;
}
.flex {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.colorBox {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: white;
font-size: 0.75rem;
width: 80px;
height: 80px;
cursor: pointer;
word-wrap:break-word;
overflow: hidden;
}
.colorBox:hover {
font-size: 6.5px;
}
.colorBox.safari {
font-size: 0.75rem;
}
.colorBox:hover {
opacity: 0.8;
font-size: 1.0rem;
-webkit-text-size-adjust: none;
}
.colorBox.safari:hover {
font-size: 10px;
}
.ui-autocomplete{
background:white;
z-index: 3;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
border: none !important;
background-color: #85B7D9;
color: #fff;
cursor: pointer;
}
.ui-helper-hidden-accessible {
display: none !important;
}
@media screen {
/* Smartphone */
.container {
width: 100%;
margin: auto;
}
}
@media screen and (min-width: 768px) {
/* Tablet */
.container {
width: 80%;
margin: auto;
}
}
@media screen and (min-width: 992px) {
/* Standard Display */
.container {
width: 70%;
margin: auto;
}
}
@media screen and (min-width: 1200px) {
/* Wide Display */
.container {
width: 60%;
margin: auto;
}
}