-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (124 loc) · 4.06 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
.align {
display: flex; /* establish flex container */
flex-direction: row; /* default value; can be omitted */
flex-wrap: nowrap; /* default value; can be omitted */
justify-content: space-between; /* switched from default (flex-start, see below) */
}
.button {
width: 140px;
}
.dimension {
width: 300px;
}
select {
width: 300px;
}
.dimension2 {
width: 100px;
}
input[type="text"],select{
width: 60px;
display: inline-block;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
margin: 1px;
padding: 5px 5px;
border: 1px solid #b7b7b7;
-webkit-border-radius: 6px;
border-radius: 6px;
font: normal normal bold 16px/normal "Times New Roman", class="support css-value">Times, serif;
color: rgba(0,0,0,1);
text-align: right;
-o-text-overflow: clip;
text-overflow: clip;
background: rgb(255,255,255);
-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}
/*Todo DONT WORK!*/
.right {
text-align: right;
}
.dimension,.dimension2,.button, select{
display: inline-block;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
float: none;
z-index: auto;
height: auto;
position: static;
/* cursor: pointer;*/
opacity: 1;
margin: 1px;
padding: 0 5px;
overflow: visible;
border: 1px solid #018dc4;
-webkit-border-radius: 3px;
border-radius: 3px;
font: normal normal bold 16px/normal "Times New Roman", Times, serif;
color: rgba(0,0,0,1);
-o-text-overflow: clip;
text-overflow: clip;
background: rgb(255,255,255);
-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.3) ;
box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.3) ;
text-shadow: none;
-webkit-transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715) 10ms;
-moz-transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715) 10ms;
-o-transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715) 10ms;
transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715) 10ms;
-webkit-transform: none;
transform: none;
-webkit-transform-origin: 50% 50% 0;
transform-origin: 50% 50% 0;
}
select{
width: 300px;}
.button { width: 30px;
}
.button:hover {
/* height: 20px;*/
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
h1{
float: none;
z-index: auto;
height: auto;
position: static;
/* cursor: pointer;*/
opacity: 1;
margin: 5px;
padding: 0 10px;
overflow: visible;
/* border: 1px solid #018dc4;
-webkit-border-radius: 3px;
border-radius: 3px;*/
font: normal normal bold 32px/normal "Times New Roman", Times, serif;
color: rgba(0,0,0,1);
-o-text-overflow: clip;
text-overflow: clip;
background: rgb(255,255,255);
/* -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.3) ;
box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.3) ;*/
text-shadow: 3px 2px 1px rgba(165,111,111,1) ;
-webkit-transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715) 10ms;
-moz-transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715) 10ms;
-o-transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715) 10ms;
transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715) 10ms;
-webkit-transform: none;
transform: none;
-webkit-transform-origin: 50% 50% 0;
transform-origin: 50% 50% 0;
}