-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (97 loc) · 1.55 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
* {
margin-left: 0px;
margin-right: 0px;
}
.app {
width: 500px;
}
.header {
display: flex;
justify-content: center;
align-items: center;
height: 40px;
/* width: 100%; */
box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.5);
margin: 0px 0px 20px 0px;
}
.input-container {
display: flex;
flex-direction: column;
margin-left: 40px;
}
.number-btn {
display: flex;
align-items: center;
justify-content: flex-start;
}
.button {
margin-bottom: 15px;
}
.number-btn div {
margin: 0px 15px 10px 0px;
}
.color-card {
border-radius: 20px;
margin: 0px 5px;
padding-top: 10px;
}
.color-containers {
display: flex;
align-items: center;
}
.color-card-container {
display: flex;
justify-content: center;
}
.card {
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
color: white;
transition: transform 0.3s;
}
.color-div {
display: flex;
border-bottom: 1px solid black;
width: 100px;
/* padding: 0px 3px; */
margin: 0px 20px;
}
.color-card-heading {
text-align: center;
margin: 10px 0px;
}
#color1 {
width: 30px;
height: 30px;
padding: 0px 0px;
border: none;
background-color: inherit;
}
#color1-input {
width: 60px;
border: none;
}
#color1-input:focus-visible,
#number:focus-visible {
outline: none;
}
#number {
width: 30px;
border: none;
text-align: center;
border-bottom: 1px solid black;
}
.card:hover {
/* border: 2px solid black; */
transform: scale(1.1);
}
.footer {
text-align: center;
color: #565656;
}
.footer a {
color: #545454;
}