~stephen-stewart/ulysses/move-box-sizing-to-base

« back to all changes in this revision

Viewing changes to public/feedback.css

  • Committer: Tarmac
  • Author(s): Stephen Stewart
  • Date: 2014-09-25 09:26:43 UTC
  • mfrom: (43.1.14 gulpify-and-update)
  • Revision ID: tarmac-20140925092643-jzluuaboybxm4q73
[r=james-w] update to version 1.0.0

* update grids to pure 0.5
* default to border-box
* default to minified css
* switch to gulp
* remove bower dep
* svg symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.ues-message {
2
 
  padding: 0.5em 0.6em;
3
 
  background-color: #E6E4E2;
4
 
  border-color: #AEA79F;
5
 
  color: #555;
6
 
  -o-border-radius: 2px;
7
 
  -ms-border-radius: 2px;
8
 
  -moz-border-radius: 2px;
9
 
  -webkit-border-radius: 2px;
10
 
  border-radius: 2px;
11
 
}
12
 
 
13
 
.ues-message a:link {
14
 
  color: inherit;
15
 
  color: rgba(0,0,0,0.75);
16
 
  text-decoration: underline;
17
 
}
18
 
 
19
 
.ues-message a:hover {
20
 
  color: #000;
21
 
}
22
 
 
23
 
.ues-message-inline {
24
 
  display: inline-block;
25
 
}
26
 
 
27
 
.ues-message-bordered {
28
 
  border-width: 1px;
29
 
  border-style: solid;
30
 
  -o-box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.25);
31
 
  -ms-box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.25);
32
 
  -moz-box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.25);
33
 
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.25);
34
 
  box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.25);
35
 
}
36
 
 
37
 
.ues-message-stack li {
38
 
  border-top-width: 0;
39
 
  border-bottom-color: #000;
40
 
  border-bottom-color: rgba(0,0,0,0.25);
41
 
  -o-border-radius: 0;
42
 
  -ms-border-radius: 0;
43
 
  -moz-border-radius: 0;
44
 
  -webkit-border-radius: 0;
45
 
  border-radius: 0;
46
 
}
47
 
 
48
 
.ues-message-stack :first-child {
49
 
  border-top-width: 1px;
50
 
  -o-border-radius: 2px 2px 0 0;
51
 
  -ms-border-radius: 2px 2px 0 0;
52
 
  -moz-border-radius: 2px 2px 0 0;
53
 
  -webkit-border-radius: 2px 2px 0 0;
54
 
  border-radius: 2px 2px 0 0;
55
 
}
56
 
 
57
 
.ues-message-stack :last-child {
58
 
  border-bottom-width: 1px;
59
 
  -o-border-radius: 0 0 2px 2px;
60
 
  -ms-border-radius: 0 0 2px 2px;
61
 
  -moz-border-radius: 0 0 2px 2px;
62
 
  -webkit-border-radius: 0 0 2px 2px;
63
 
  border-radius: 0 0 2px 2px;
64
 
}
65
 
 
66
 
.ues-message-closeable {
67
 
  position: relative;
68
 
  cursor: pointer;
69
 
  overflow: hidden;
70
 
  max-height: 1000px;
71
 
  -o-transition: 0.3s ease all;
72
 
  -ms-transition: 0.3s ease all;
73
 
  -moz-transition: 0.3s ease all;
74
 
  -webkit-transition: 0.3s ease all;
75
 
  transition: 0.3s ease all;
76
 
}
77
 
 
78
 
.ues-message-closeable:after {
79
 
  content: "✖";
80
 
  position: absolute;
81
 
  right: 0.6em;
82
 
  opacity: 0;
83
 
}
84
 
 
85
 
.ues-message-closeable:hover:after {
86
 
  opacity: 1;
87
 
}
88
 
 
89
 
.ues-message-closed {
90
 
  max-height: 0;
91
 
  padding: 0;
92
 
  border: none;
93
 
  margin: 0;
94
 
  opacity: 0;
95
 
  -o-box-shadow: none;
96
 
  -ms-box-shadow: none;
97
 
  -moz-box-shadow: none;
98
 
  -webkit-box-shadow: none;
99
 
  box-shadow: none;
100
 
}
101
 
 
102
 
.ues-disabled {
103
 
  color: #999;
104
 
  border-color: #ccc;
105
 
}
106
 
 
107
 
.ues-success {
108
 
  background-color: #AFE1B6;
109
 
  border-color: #38B44A;
110
 
  color: #114918;
111
 
}
112
 
 
113
 
.ues-warning {
114
 
  background-color: #F8E2B1;
115
 
  border-color: #EFB73E;
116
 
  color: #68563F;
117
 
}
118
 
 
119
 
.ues-error {
120
 
  background-color: #F5C2BF;
121
 
  border-color: #DF382C;
122
 
  color: #A11E1A;
123
 
}
124
 
 
125
 
@keyframes ues-error-pulsating {
126
 
  from {
127
 
    background: #FFE6E5;
128
 
  }
129
 
 
130
 
  to {
131
 
    background: #FFA09B;
132
 
  }
133
 
}
134
 
 
135
 
.ues-error-pulsating {
136
 
  -o-animation: ues-error-pulsating 0.7s ease-in-out infinite alternate;
137
 
  -ms-animation: ues-error-pulsating 0.7s ease-in-out infinite alternate;
138
 
  -moz-animation: ues-error-pulsating 0.7s ease-in-out infinite alternate;
139
 
  -webkit-animation: ues-error-pulsating 0.7s ease-in-out infinite alternate;
140
 
  animation: ues-error-pulsating 0.7s ease-in-out infinite alternate;
141
 
}
142
 
 
143
 
.ues-information {
144
 
  background-color: #B9E9FA;
145
 
  border-color: #19B6EE;
146
 
  color: #40525C;
147
 
}
148
 
 
149
 
@-o-keyframes ues-error-pulsating {
150
 
  from {
151
 
    background: #FFE6E5;
152
 
  }
153
 
 
154
 
  to {
155
 
    background: #FFA09B;
156
 
  }
157
 
}
158
 
 
159
 
@-ms-keyframes ues-error-pulsating {
160
 
  from {
161
 
    background: #FFE6E5;
162
 
  }
163
 
 
164
 
  to {
165
 
    background: #FFA09B;
166
 
  }
167
 
}
168
 
 
169
 
@-moz-keyframes ues-error-pulsating {
170
 
  from {
171
 
    background: #FFE6E5;
172
 
  }
173
 
 
174
 
  to {
175
 
    background: #FFA09B;
176
 
  }
177
 
}
178
 
 
179
 
@-webkit-keyframes ues-error-pulsating {
180
 
  from {
181
 
    background: #FFE6E5;
182
 
  }
183
 
 
184
 
  to {
185
 
    background: #FFA09B;
186
 
  }
187
 
}
 
 
b'\\ No newline at end of file'
 
1
.ues-message{padding:.5em .6em;border-radius:2px;background-color:#E6E4E2;border-color:#AEA79F;color:#555}.ues-message a:link{color:inherit;color:rgba(0,0,0,.75);text-decoration:underline}.ues-message a:hover{color:#000}.ues-message-inline{display:inline-block}.ues-message-bordered{border-width:1px;border-style:solid;box-shadow:1px 1px 3px 0 rgba(0,0,0,.25)}.ues-message-stack li{border-radius:0;border-top-width:0;border-bottom-color:#000;border-bottom-color:rgba(0,0,0,.25)}.ues-message-stack :first-child{border-radius:2px 2px 0 0;border-top-width:1px}.ues-message-stack :last-child{border-radius:0 0 2px 2px;border-bottom-width:1px}.ues-message-closeable{position:relative;cursor:pointer;-webkit-transition:.3s ease all;transition:.3s ease all;overflow:hidden;max-height:1000px}.ues-message-closeable:after{content:"✖";position:absolute;right:.6em;opacity:0}.ues-message-closeable:hover:after{opacity:1}.ues-message-closed{max-height:0;padding:0;border:none;box-shadow:none;margin:0;opacity:0}.ues-disabled{color:#999;border-color:#ccc}.ues-success{background-color:#AFE1B6;border-color:#38B44A;color:#114918}.ues-warning{background-color:#F8E2B1;border-color:#EFB73E;color:#68563F}.ues-error{background-color:#F5C2BF;border-color:#DF382C;color:#A11E1A}@-webkit-keyframes ues-error-pulsating{from{background:#FFE6E5}to{background:#FFA09B}}@keyframes ues-error-pulsating{from{background:#FFE6E5}to{background:#FFA09B}}.ues-error-pulsating{-webkit-animation:ues-error-pulsating .7s ease-in-out infinite alternate;animation:ues-error-pulsating .7s ease-in-out infinite alternate}.ues-information{background-color:#B9E9FA;border-color:#19B6EE;color:#40525C}
 
 
b'\\ No newline at end of file'