File: calc_04.css

package info (click to toggle)
python-rcssmin 1%3A1.1.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,196 kB
  • sloc: python: 2,379; ansic: 1,216; sh: 110; makefile: 20
file content (9 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (6)
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);
}