forked from nayunhwan/UnivColor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (77 loc) · 1.22 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
*{
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: 22pt;
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 {
color: white;
font-size: 5px;
line-height: 80px;
text-align: center;
width: 80px;
height: 80px;
cursor: pointer;
word-wrap:break-word;
overflow: hidden;
}
.colorBox.safari {
font-size: 9px;
}
.ui-autocomplete{
background:white;
z-index: 3;
}
@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;
}
}