-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebclothes.css
More file actions
executable file
·93 lines (79 loc) · 1.34 KB
/
Copy pathwebclothes.css
File metadata and controls
executable file
·93 lines (79 loc) · 1.34 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
#appscreen{
width: 370px;
height: 320px;
margin-left: auto;
margin-right: auto;
margin-top: 150px;
-webkit-border-radius: 6px;
border-radius: 6px;
border-style: dotted;
border-width: 3px;
padding: 12px;
}
#view {
height: 200px;
width: 370px;
background-color: #DDD;
-webkit-border-radius: 2px;
border-radius: 2px;
margin-bottom: 5px;
boder-style: solid;
border-width: 1px;
text-align: center;
overflow: scroll;
}
#intro, #punch {
text-align: center;
overflow: hidden;
width: 370px;
-webkit-transition: width .5s ease-in-out;
transition: width .5s ease-in-out;
}
#intro {
float: left;
height: 38px;
}
#punch {
width: 0px;
}
button {
background-color: #FFF;
-webkit-border-radius: 6px;
border-radius: 6px;
font-weight: bold;
font-size: 13pt;
padding: 5px;
}
.jobs {
background-color: #FFF;
-webkit-border-radius: 2px;
border-radius: 2px;
font-size: 11pt;
padding: 5px;
width: 200px;
clear: all;
border-style: solid;
border-width: 1px;
}
.jobs:focus {
background-color: blue;
}
#in {
background-color: rgb(127, 184, 101);
}
#out {
background-color: rgb(242, 57, 56);
}
#in:disabled, #out:disabled {
background-color: #FFF;
}
button:hover, button:active, button:focus {
background-color: #CCC;
}
button:disabled {
opacity: 0.4;
}
p {
height: 30px;
background-color: "teal";
}