-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
76 lines (68 loc) · 1006 Bytes
/
styles.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
body, body *
{
margin: 0px;
padding: 0px;
}
body #content
{
width: 550px;
min-height: 100px;
background-color: #eeeeee;
border-radius: 15px;
margin: auto;
margin-top: 20px;
padding: 1px;
display: flex;
#containerIds
{
div
{
position: relative;
width: 200px;
transition-duration: 500ms;
height: 30px;
font-size: 24px;
background-color: #cccccc;
border-radius: 15px;
padding: 4%;
padding-left: 0px;
margin: 10px;
text-align: center;
cursor: pointer;
&.picked, &#sizer
{
width: 210px;
transition-duration: 500ms;
}
}
}
#containerManagement
{
&.hide *
{
display: none;
}
width: auto;
position: relative;
margin: 5px;
padding: 5px;
input
{
width: 300px;
}
#button
{
width: 110px;
height: 30px;
background-color: white;
color: black;
border-radius: 5px;
text-align: center;
font-size: 20px;
margin: auto;
margin-top: 10px;
padding-top: 7px;
cursor: pointer;
}
}
}