-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (84 loc) · 1.72 KB
/
style.css
File metadata and controls
97 lines (84 loc) · 1.72 KB
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
@import url("https://fonts.googleapis.com/css2?family=Jua&family=Roboto+Slab:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Jua", sans-serif;
}
.팝업컨테이너 {
display: flex;
flex-direction: column;
width: 300px;
justify-content: center;
}
.선택컨테이너 {
display: flex;
padding: 40px;
align-items: center;
justify-content: center;
background-color: rgb(86, 210, 252);
}
#색상선택버튼 {
outline: none;
border: none;
cursor: pointer;
background-color: rgb(80, 80, 234);
color: white;
padding: 10px 20px;
border-radius: 5px;
font-size: 1rem;
font-weight: 200;
}
.결과헤더 {
display: flex;
font-weight: 300;
margin: 10px;
}
.선택된색상컨테이너 {
display: flex;
margin-left: 10px;
padding: 20px;
}
#선택된색상박스 {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: black;
border-width: 1px;
}
#선택된색상텍스트 {
display: flex;
align-items: center;
font-size: 1rem;
font-weight: 200;
margin-left: 10px;
}
.로컬스토리지-컨테이너 {
display: flex;
flex-direction: column;
margin : 10px
}
.로컬스토리지-헤더 {
display: flex;
justify-content: space-between;
align-items: center;
}
.로컬스토리지-색상카드컨테이너 {
display: flex;
align-items: center;
margin-left: 10px;
margin-right: 10px;
padding: 10px;
background-color: #f8f8f8;
border-radius: 8px;
}
.로컬스토리지-색상박스 {
width: 30px;
height: 30px;
border-radius: 50%;
margin-right: 10px;
}
.로컬스토리지-색상텍스트 {
font-size: 1rem;
font-weight: 200;
}