File: calc_04.css

package info (click to toggle)
python-rcssmin 1.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,028 kB
  • sloc: python: 5,713; ansic: 1,054; sh: 23; makefile: 19
file content (9 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
/*! Found this example by searching github for 'calc(' :-)
 * https://github.com/marcelotorres/experiencing-transition-and-the-calc-CSS3/blob/master/style.css
 */
.mtlab1-wrap{margin:60px auto 0 auto;overflow:hidden;background-color:#f0f0f0;border:2px solid #fff;
			width: -webkit-calc((74px * 6) + 330px);
			width: -moz-calc((74px * 6) + 330px);
			width: -o-calc((74px * 6) + 330px);
			width: calc((74px * 6) + 330px);
}