protozaur 0.1.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +5 -1
- data/LICENSE.txt +1 -1
- data/README.md +163 -52
- data/app/assets/stylesheets/ptz/reset.css.sass +12 -11
- data/bower.json +23 -0
- data/gulp/Gulpfile.coffee +12 -0
- data/gulp/Gulpfile.js +2 -0
- data/gulp/README.md +7 -0
- data/gulp/gulp_tasks/_params.coffee +25 -0
- data/gulp/gulp_tasks/css.coffee +96 -0
- data/gulp/gulp_tasks/livereload.coffee +10 -0
- data/gulp/gulp_tasks/log.coffee +2 -0
- data/gulp/gulp_tasks/sass.coffee +108 -0
- data/gulp/gulp_tasks/tools.coffee +34 -0
- data/gulp/package.json +26 -0
- data/lib/protozaur/version.rb +1 -1
- data/package.json +27 -0
- data/ptz/base.css.css +120 -0
- data/ptz/framework.css.css +2188 -0
- data/ptz/inputs-buttons/base.css.css +55 -0
- data/ptz/inputs-buttons/sizes.css.css +95 -0
- data/ptz/protozaur.min.css +1 -0
- data/ptz/reset.css.css +83 -0
- data/ptz/sizes.css.css +1 -0
- metadata +22 -3
@@ -0,0 +1,55 @@
|
|
1
|
+
.ptz--btn, .ptz--input, .ptz--textarea {
|
2
|
+
color: black;
|
3
|
+
font-size: 15px;
|
4
|
+
line-height: 18px;
|
5
|
+
padding: 7px 10px;
|
6
|
+
border-radius: 3px;
|
7
|
+
vertical-align: top;
|
8
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
9
|
+
}
|
10
|
+
|
11
|
+
.ptz--btn:disabled, .ptz--input:disabled, .ptz--textarea:disabled {
|
12
|
+
color: #eee;
|
13
|
+
background: white;
|
14
|
+
cursor: not-allowed;
|
15
|
+
}
|
16
|
+
|
17
|
+
.ptz--btn:disabled:hover, .ptz--input:disabled:hover, .ptz--textarea:disabled:hover {
|
18
|
+
color: #eee;
|
19
|
+
background: white;
|
20
|
+
}
|
21
|
+
|
22
|
+
.ptz--btn {
|
23
|
+
text-align: center;
|
24
|
+
white-space: nowrap;
|
25
|
+
display: inline-block;
|
26
|
+
cursor: pointer;
|
27
|
+
background: white;
|
28
|
+
transition: background-color .2s ease;
|
29
|
+
}
|
30
|
+
|
31
|
+
.ptz--btn.current {
|
32
|
+
border-color: #7bc7ff;
|
33
|
+
background-color: #c5e6ff;
|
34
|
+
}
|
35
|
+
|
36
|
+
.ptz--btn.current:hover {
|
37
|
+
background-color: #c5e6ff;
|
38
|
+
}
|
39
|
+
|
40
|
+
.ptz--btn:hover {
|
41
|
+
color: #000;
|
42
|
+
background-color: #e3f2fd;
|
43
|
+
}
|
44
|
+
|
45
|
+
.ptz--btn--side-left {
|
46
|
+
margin-right: -3px;
|
47
|
+
border-top-right-radius: 0;
|
48
|
+
border-bottom-right-radius: 0;
|
49
|
+
}
|
50
|
+
|
51
|
+
.ptz--btn--side-right {
|
52
|
+
margin-left: -3px;
|
53
|
+
border-top-left-radius: 0;
|
54
|
+
border-bottom-left-radius: 0;
|
55
|
+
}
|
@@ -0,0 +1,95 @@
|
|
1
|
+
.ptz--size-10 {
|
2
|
+
font-size: 10px;
|
3
|
+
line-height: 13px;
|
4
|
+
padding: 5px 8px;
|
5
|
+
}
|
6
|
+
|
7
|
+
.ptz--size-11 {
|
8
|
+
font-size: 11px;
|
9
|
+
line-height: 14px;
|
10
|
+
padding: 6px 9px;
|
11
|
+
}
|
12
|
+
|
13
|
+
.ptz--size-12 {
|
14
|
+
font-size: 12px;
|
15
|
+
line-height: 15px;
|
16
|
+
padding: 7px 10px;
|
17
|
+
}
|
18
|
+
|
19
|
+
.ptz--size-13 {
|
20
|
+
font-size: 13px;
|
21
|
+
line-height: 16px;
|
22
|
+
padding: 8px 11px;
|
23
|
+
}
|
24
|
+
|
25
|
+
.ptz--size-14 {
|
26
|
+
font-size: 14px;
|
27
|
+
line-height: 17px;
|
28
|
+
padding: 9px 12px;
|
29
|
+
}
|
30
|
+
|
31
|
+
.ptz--size-15 {
|
32
|
+
font-size: 15px;
|
33
|
+
line-height: 18px;
|
34
|
+
padding: 10px 13px;
|
35
|
+
}
|
36
|
+
|
37
|
+
.ptz--size-16 {
|
38
|
+
font-size: 16px;
|
39
|
+
line-height: 19px;
|
40
|
+
padding: 11px 14px;
|
41
|
+
}
|
42
|
+
|
43
|
+
.ptz--size-17 {
|
44
|
+
font-size: 17px;
|
45
|
+
line-height: 20px;
|
46
|
+
padding: 12px 15px;
|
47
|
+
}
|
48
|
+
|
49
|
+
.ptz--size-18 {
|
50
|
+
font-size: 18px;
|
51
|
+
line-height: 21px;
|
52
|
+
padding: 13px 16px;
|
53
|
+
}
|
54
|
+
|
55
|
+
.ptz--size-19 {
|
56
|
+
font-size: 19px;
|
57
|
+
line-height: 22px;
|
58
|
+
padding: 14px 17px;
|
59
|
+
}
|
60
|
+
|
61
|
+
.ptz--size-20 {
|
62
|
+
font-size: 20px;
|
63
|
+
line-height: 23px;
|
64
|
+
padding: 15px 18px;
|
65
|
+
}
|
66
|
+
|
67
|
+
.ptz--size-21 {
|
68
|
+
font-size: 21px;
|
69
|
+
line-height: 24px;
|
70
|
+
padding: 16px 19px;
|
71
|
+
}
|
72
|
+
|
73
|
+
.ptz--size-22 {
|
74
|
+
font-size: 22px;
|
75
|
+
line-height: 25px;
|
76
|
+
padding: 17px 20px;
|
77
|
+
}
|
78
|
+
|
79
|
+
.ptz--size-23 {
|
80
|
+
font-size: 23px;
|
81
|
+
line-height: 26px;
|
82
|
+
padding: 18px 21px;
|
83
|
+
}
|
84
|
+
|
85
|
+
.ptz--size-24 {
|
86
|
+
font-size: 24px;
|
87
|
+
line-height: 27px;
|
88
|
+
padding: 19px 22px;
|
89
|
+
}
|
90
|
+
|
91
|
+
.ptz--size-25 {
|
92
|
+
font-size: 25px;
|
93
|
+
line-height: 28px;
|
94
|
+
padding: 20px 23px;
|
95
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
.ptz--reset *,.ptz--reset ::after,.ptz--reset ::before{box-sizing:border-box}img,table,td,th,tr{vertical-align:top}.ol li,.ul li,li{list-style-position:outside}.ptz--reset *{margin:0;padding:0;border:0;outline:0}hr,p{margin:20px 0}.ptz--reset :active,.ptz--reset :focus,.ptz--reset :hover{outline:0}body{color:#000;font-size:10px;line-height:125%;background:#fff}a img{border:none}a,a:hover{text-decoration:none}ol,ul{list-style:none}table,td,th,tr{border-collapse:collapse;border-spacing:0}th{font-weight:700}::-moz-focus-inner{border:0;margin:0;padding:0;outline:0}input::-moz-placeholder{color:#ccc!important}input:-ms-input-placeholder{color:#ccc!important}input::-webkit-input-placeholder{color:#ccc!important}input:focus::-webkit-input-placeholder{color:transparent!important}input[type=submit]{cursor:pointer}a{color:#012d85;transition:color .2s ease}a:hover{color:red}h1,h2,h3,h4,h5,h6{font-size:18px;line-height:130%;font-weight:400}p{color:#292e31;font-size:16px;line-height:160%}hr{border-top:1px solid #eee}sub,sup{font-size:85%;zoom:1}sup{vertical-align:40%}sub{vertical-align:-40%}.ol,.ul{margin-left:20px;margin-bottom:20px}.ol li,.ul li{margin-left:15px;padding-left:5px;line-height:135%}.ol li{list-style-type:decimal}.ul li{list-style-type:disc}.hidden{display:none!important}.invisible{visibility:hidden!important;height:0!important}.visible{visibility:visible!important;height:auto}.ob,.ofh{overflow:hidden!important;zoom:1}.pull-left{float:left}.pull-right{float:right}.clearfix:after{content:".";display:block;line-height:0;height:0;clear:both;visibility:hidden}html[xmlns] .clearfix{display:block}* html .clearfix{zoom:1}.text-select-off{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}noscript{background:red;padding:5px;color:#fff;font-size:20px}.ma{margin:auto}.p0{padding:0!important}.m0{margin:0!important}.pt0{padding-top:0!important}.pr0{padding-right:0!important}.pb0{padding-bottom:0!important}.pl0{padding-left:0!important}.mt0{margin-top:0!important}.mr0{margin-right:0!important}.mb0{margin-bottom:0!important}.ml0{margin-left:0!important}.p5{padding:5px!important}.m5{margin:5px!important}.pt5{padding-top:5px!important}.pr5{padding-right:5px!important}.pb5{padding-bottom:5px!important}.pl5{padding-left:5px!important}.mt5{margin-top:5px!important}.mr5{margin-right:5px!important}.mb5{margin-bottom:5px!important}.ml5{margin-left:5px!important}.p10{padding:10px!important}.m10{margin:10px!important}.pt10{padding-top:10px!important}.pr10{padding-right:10px!important}.pb10{padding-bottom:10px!important}.pl10{padding-left:10px!important}.mt10{margin-top:10px!important}.mr10{margin-right:10px!important}.mb10{margin-bottom:10px!important}.ml10{margin-left:10px!important}.p15{padding:15px!important}.m15{margin:15px!important}.pt15{padding-top:15px!important}.pr15{padding-right:15px!important}.pb15{padding-bottom:15px!important}.pl15{padding-left:15px!important}.mt15{margin-top:15px!important}.mr15{margin-right:15px!important}.mb15{margin-bottom:15px!important}.ml15{margin-left:15px!important}.p20{padding:20px!important}.m20{margin:20px!important}.pt20{padding-top:20px!important}.pr20{padding-right:20px!important}.pb20{padding-bottom:20px!important}.pl20{padding-left:20px!important}.mt20{margin-top:20px!important}.mr20{margin-right:20px!important}.mb20{margin-bottom:20px!important}.ml20{margin-left:20px!important}.p25{padding:25px!important}.m25{margin:25px!important}.pt25{padding-top:25px!important}.pr25{padding-right:25px!important}.pb25{padding-bottom:25px!important}.pl25{padding-left:25px!important}.mt25{margin-top:25px!important}.mr25{margin-right:25px!important}.mb25{margin-bottom:25px!important}.ml25{margin-left:25px!important}.p30{padding:30px!important}.m30{margin:30px!important}.pt30{padding-top:30px!important}.pr30{padding-right:30px!important}.pb30{padding-bottom:30px!important}.pl30{padding-left:30px!important}.mt30{margin-top:30px!important}.mr30{margin-right:30px!important}.mb30{margin-bottom:30px!important}.ml30{margin-left:30px!important}.p35{padding:35px!important}.m35{margin:35px!important}.pt35{padding-top:35px!important}.pr35{padding-right:35px!important}.pb35{padding-bottom:35px!important}.pl35{padding-left:35px!important}.mt35{margin-top:35px!important}.mr35{margin-right:35px!important}.mb35{margin-bottom:35px!important}.ml35{margin-left:35px!important}.p40{padding:40px!important}.m40{margin:40px!important}.pt40{padding-top:40px!important}.pr40{padding-right:40px!important}.pb40{padding-bottom:40px!important}.pl40{padding-left:40px!important}.mt40{margin-top:40px!important}.mr40{margin-right:40px!important}.mb40{margin-bottom:40px!important}.ml40{margin-left:40px!important}.p45{padding:45px!important}.m45{margin:45px!important}.pt45{padding-top:45px!important}.pr45{padding-right:45px!important}.pb45{padding-bottom:45px!important}.pl45{padding-left:45px!important}.mt45{margin-top:45px!important}.mr45{margin-right:45px!important}.mb45{margin-bottom:45px!important}.ml45{margin-left:45px!important}.p50{padding:50px!important}.m50{margin:50px!important}.pt50{padding-top:50px!important}.pr50{padding-right:50px!important}.pb50{padding-bottom:50px!important}.pl50{padding-left:50px!important}.mt50{margin-top:50px!important}.mr50{margin-right:50px!important}.mb50{margin-bottom:50px!important}.ml50{margin-left:50px!important}.p55{padding:55px!important}.m55{margin:55px!important}.pt55{padding-top:55px!important}.pr55{padding-right:55px!important}.pb55{padding-bottom:55px!important}.pl55{padding-left:55px!important}.mt55{margin-top:55px!important}.mr55{margin-right:55px!important}.mb55{margin-bottom:55px!important}.ml55{margin-left:55px!important}.p60{padding:60px!important}.m60{margin:60px!important}.pt60{padding-top:60px!important}.pr60{padding-right:60px!important}.pb60{padding-bottom:60px!important}.pl60{padding-left:60px!important}.mt60{margin-top:60px!important}.mr60{margin-right:60px!important}.mb60{margin-bottom:60px!important}.ml60{margin-left:60px!important}.p65{padding:65px!important}.m65{margin:65px!important}.pt65{padding-top:65px!important}.pr65{padding-right:65px!important}.pb65{padding-bottom:65px!important}.pl65{padding-left:65px!important}.mt65{margin-top:65px!important}.mr65{margin-right:65px!important}.mb65{margin-bottom:65px!important}.ml65{margin-left:65px!important}.p70{padding:70px!important}.m70{margin:70px!important}.pt70{padding-top:70px!important}.pr70{padding-right:70px!important}.pb70{padding-bottom:70px!important}.pl70{padding-left:70px!important}.mt70{margin-top:70px!important}.mr70{margin-right:70px!important}.mb70{margin-bottom:70px!important}.ml70{margin-left:70px!important}.p75{padding:75px!important}.m75{margin:75px!important}.pt75{padding-top:75px!important}.pr75{padding-right:75px!important}.pb75{padding-bottom:75px!important}.pl75{padding-left:75px!important}.mt75{margin-top:75px!important}.mr75{margin-right:75px!important}.mb75{margin-bottom:75px!important}.ml75{margin-left:75px!important}.p80{padding:80px!important}.m80{margin:80px!important}.pt80{padding-top:80px!important}.pr80{padding-right:80px!important}.pb80{padding-bottom:80px!important}.pl80{padding-left:80px!important}.mt80{margin-top:80px!important}.mr80{margin-right:80px!important}.mb80{margin-bottom:80px!important}.ml80{margin-left:80px!important}.p85{padding:85px!important}.m85{margin:85px!important}.pt85{padding-top:85px!important}.pr85{padding-right:85px!important}.pb85{padding-bottom:85px!important}.pl85{padding-left:85px!important}.mt85{margin-top:85px!important}.mr85{margin-right:85px!important}.mb85{margin-bottom:85px!important}.ml85{margin-left:85px!important}.p90{padding:90px!important}.m90{margin:90px!important}.pt90{padding-top:90px!important}.pr90{padding-right:90px!important}.pb90{padding-bottom:90px!important}.pl90{padding-left:90px!important}.mt90{margin-top:90px!important}.mr90{margin-right:90px!important}.mb90{margin-bottom:90px!important}.ml90{margin-left:90px!important}.p95{padding:95px!important}.m95{margin:95px!important}.pt95{padding-top:95px!important}.pr95{padding-right:95px!important}.pb95{padding-bottom:95px!important}.pl95{padding-left:95px!important}.mt95{margin-top:95px!important}.mr95{margin-right:95px!important}.mb95{margin-bottom:95px!important}.ml95{margin-left:95px!important}.p100{padding:100px!important}.m100{margin:100px!important}.pt100{padding-top:100px!important}.pr100{padding-right:100px!important}.pb100{padding-bottom:100px!important}.pl100{padding-left:100px!important}.mt100{margin-top:100px!important}.mr100{margin-right:100px!important}.mb100{margin-bottom:100px!important}.ml100{margin-left:100px!important}.w10{width:10px!important}.w15{width:15px!important}.w20{width:20px!important}.w25{width:25px!important}.w30{width:30px!important}.w35{width:35px!important}.w40{width:40px!important}.w45{width:45px!important}.w50{width:50px!important}.w55{width:55px!important}.w60{width:60px!important}.w65{width:65px!important}.w70{width:70px!important}.w75{width:75px!important}.w80{width:80px!important}.w85{width:85px!important}.w90{width:90px!important}.w95{width:95px!important}.w100{width:100px!important}.w105{width:105px!important}.w110{width:110px!important}.w115{width:115px!important}.w120{width:120px!important}.w125{width:125px!important}.w130{width:130px!important}.w135{width:135px!important}.w140{width:140px!important}.w145{width:145px!important}.w150{width:150px!important}.w155{width:155px!important}.w160{width:160px!important}.w165{width:165px!important}.w170{width:170px!important}.w175{width:175px!important}.w180{width:180px!important}.w185{width:185px!important}.w190{width:190px!important}.w195{width:195px!important}.w200{width:200px!important}.w205{width:205px!important}.w210{width:210px!important}.w215{width:215px!important}.w220{width:220px!important}.w225{width:225px!important}.w230{width:230px!important}.w235{width:235px!important}.w240{width:240px!important}.w245{width:245px!important}.w250{width:250px!important}.w255{width:255px!important}.w260{width:260px!important}.w265{width:265px!important}.w270{width:270px!important}.w275{width:275px!important}.w280{width:280px!important}.w285{width:285px!important}.w290{width:290px!important}.w295{width:295px!important}.w300{width:300px!important}.w305{width:305px!important}.w310{width:310px!important}.w315{width:315px!important}.w320{width:320px!important}.w325{width:325px!important}.w330{width:330px!important}.w335{width:335px!important}.w340{width:340px!important}.w345{width:345px!important}.w350{width:350px!important}.w355{width:355px!important}.w360{width:360px!important}.w365{width:365px!important}.w370{width:370px!important}.w375{width:375px!important}.w380{width:380px!important}.w385{width:385px!important}.w390{width:390px!important}.w395{width:395px!important}.w400{width:400px!important}.w405{width:405px!important}.w410{width:410px!important}.w415{width:415px!important}.w420{width:420px!important}.w425{width:425px!important}.w430{width:430px!important}.w435{width:435px!important}.w440{width:440px!important}.w445{width:445px!important}.w450{width:450px!important}.w455{width:455px!important}.w460{width:460px!important}.w465{width:465px!important}.w470{width:470px!important}.w475{width:475px!important}.w480{width:480px!important}.w485{width:485px!important}.w490{width:490px!important}.w495{width:495px!important}.w500{width:500px!important}.w505{width:505px!important}.w510{width:510px!important}.w515{width:515px!important}.w520{width:520px!important}.w525{width:525px!important}.w530{width:530px!important}.w535{width:535px!important}.w540{width:540px!important}.w545{width:545px!important}.w550{width:550px!important}.w555{width:555px!important}.w560{width:560px!important}.w565{width:565px!important}.w570{width:570px!important}.w575{width:575px!important}.w580{width:580px!important}.w585{width:585px!important}.w590{width:590px!important}.w595{width:595px!important}.w600{width:600px!important}.w605{width:605px!important}.w610{width:610px!important}.w615{width:615px!important}.w620{width:620px!important}.w625{width:625px!important}.w630{width:630px!important}.w635{width:635px!important}.w640{width:640px!important}.w645{width:645px!important}.w650{width:650px!important}.w655{width:655px!important}.w660{width:660px!important}.w665{width:665px!important}.w670{width:670px!important}.w675{width:675px!important}.w680{width:680px!important}.w685{width:685px!important}.w690{width:690px!important}.w695{width:695px!important}.w700{width:700px!important}.w705{width:705px!important}.w710{width:710px!important}.w715{width:715px!important}.w720{width:720px!important}.w725{width:725px!important}.w730{width:730px!important}.w735{width:735px!important}.w740{width:740px!important}.w745{width:745px!important}.w750{width:750px!important}.w755{width:755px!important}.w760{width:760px!important}.w765{width:765px!important}.w770{width:770px!important}.w775{width:775px!important}.w780{width:780px!important}.w785{width:785px!important}.w790{width:790px!important}.w795{width:795px!important}.w800{width:800px!important}.w805{width:805px!important}.w810{width:810px!important}.w815{width:815px!important}.w820{width:820px!important}.w825{width:825px!important}.w830{width:830px!important}.w835{width:835px!important}.w840{width:840px!important}.w845{width:845px!important}.w850{width:850px!important}.w855{width:855px!important}.w860{width:860px!important}.w865{width:865px!important}.w870{width:870px!important}.w875{width:875px!important}.w880{width:880px!important}.w885{width:885px!important}.w890{width:890px!important}.w895{width:895px!important}.w900{width:900px!important}.w905{width:905px!important}.w910{width:910px!important}.w915{width:915px!important}.w920{width:920px!important}.w925{width:925px!important}.w930{width:930px!important}.w935{width:935px!important}.w940{width:940px!important}.w945{width:945px!important}.w950{width:950px!important}.w955{width:955px!important}.w960{width:960px!important}.w965{width:965px!important}.w970{width:970px!important}.w975{width:975px!important}.w980{width:980px!important}.w985{width:985px!important}.w990{width:990px!important}.w995{width:995px!important}.w1000{width:1000px!important}.w1005{width:1005px!important}.w1010{width:1010px!important}.w1015{width:1015px!important}.w1020{width:1020px!important}.w1025{width:1025px!important}.w1030{width:1030px!important}.w1035{width:1035px!important}.w1040{width:1040px!important}.w1045{width:1045px!important}.w1050{width:1050px!important}.w1055{width:1055px!important}.w1060{width:1060px!important}.w1065{width:1065px!important}.w1070{width:1070px!important}.w1075{width:1075px!important}.w1080{width:1080px!important}.w1085{width:1085px!important}.w1090{width:1090px!important}.w1095{width:1095px!important}.w1100{width:1100px!important}.w1105{width:1105px!important}.w1110{width:1110px!important}.w1115{width:1115px!important}.w1120{width:1120px!important}.w1125{width:1125px!important}.w1130{width:1130px!important}.w1135{width:1135px!important}.w1140{width:1140px!important}.w1145{width:1145px!important}.w1150{width:1150px!important}.w1155{width:1155px!important}.w1160{width:1160px!important}.w1165{width:1165px!important}.w1170{width:1170px!important}.w1175{width:1175px!important}.w1180{width:1180px!important}.w1185{width:1185px!important}.w1190{width:1190px!important}.w1195{width:1195px!important}.w1200{width:1200px!important}.w5p{width:5%!important}.w10p{width:10%!important}.w15p{width:15%!important}.w20p{width:20%!important}.w25p{width:25%!important}.w30p{width:30%!important}.w35p{width:35%!important}.w40p{width:40%!important}.w45p{width:45%!important}.w50p{width:50%!important}.w55p{width:55%!important}.w60p{width:60%!important}.w65p{width:65%!important}.w70p{width:70%!important}.w75p{width:75%!important}.w80p{width:80%!important}.w85p{width:85%!important}.w90p{width:90%!important}.w95p{width:95%!important}.w100p{width:100%!important}.fs0{font-size:0}.fs10{font-size:10px!important}.fs11{font-size:11px!important}.fs12{font-size:12px!important}.fs13{font-size:13px!important}.fs14{font-size:14px!important}.fs15{font-size:15px!important}.fs16{font-size:16px!important}.fs17{font-size:17px!important}.fs18{font-size:18px!important}.fs19{font-size:19px!important}.fs20{font-size:20px!important}.fs21{font-size:21px!important}.fs22{font-size:22px!important}.fs23{font-size:23px!important}.fs24{font-size:24px!important}.fs25{font-size:25px!important}.fs26{font-size:26px!important}.fs27{font-size:27px!important}.fs28{font-size:28px!important}.fs29{font-size:29px!important}.fs30{font-size:30px!important}.lh100{line-height:100%!important}.lh105{line-height:105%!important}.lh110{line-height:110%!important}.lh115{line-height:115%!important}.lh120{line-height:120%!important}.lh125{line-height:125%!important}.lh130{line-height:130%!important}.lh135{line-height:135%!important}.lh140{line-height:140%!important}.lh145{line-height:145%!important}.lh150{line-height:150%!important}.lh155{line-height:155%!important}.lh160{line-height:160%!important}.lh165{line-height:165%!important}.lh170{line-height:170%!important}.lh175{line-height:175%!important}.lh180{line-height:180%!important}.lh185{line-height:185%!important}.lh190{line-height:190%!important}.lh195{line-height:195%!important}.lh200{line-height:200%!important}.tac{text-align:center!important}.tar{text-align:right!important}.tal{text-align:left!important}.taj{text-align:justify!important}.vat{vertical-align:top!important}.vam{vertical-align:middle!important}.vab{vertical-align:bottom!important}.b{font-weight:700!important}.i{font-style:italic!important}.n{font-style:normal!important}.u{text-decoration:underline!important}.fwn{font-weight:400!important}.upcase{text-transform:uppercase}.downcase{text-transform:lowercase}.ffa{font-family:Arial}.fft{font-family:Tahoma}.ffv{font-family:Verdana}.ffg{font-family:Georgia}.ffm{font-family:Monospace}.fftnr{font-family:Times New Roman}.inline{display:inline!important}.block{display:block!important}.iblock{display:inline-block!important}.showme{border:1px solid red!important}.posrel{position:relative!important}.posabs{position:absolute!important}.ptz--table{display:table}.ptz--row,.ptz--tr{display:table-row}.ptz--cell,.ptz--td,.ptz--th{display:table-cell;vertical-align:top}.brn{border-radius:0!important}.br-off,.nobr{white-space:nowrap}.br-on{white-space:normal}.ls0{letter-spacing:0}.lsn{letter-spacing:normal}.ptz--btn,.ptz--input,.ptz--textarea{color:#000;font-size:15px;line-height:18px;padding:7px 10px;border-radius:3px;vertical-align:top;border:1px solid rgba(0,0,0,.2)}.ptz--btn:disabled,.ptz--input:disabled,.ptz--textarea:disabled{color:#eee;background:#fff;cursor:not-allowed}.ptz--btn:disabled:hover,.ptz--input:disabled:hover,.ptz--textarea:disabled:hover{color:#eee;background:#fff}.ptz--btn{text-align:center;white-space:nowrap;display:inline-block;cursor:pointer;background:#fff;transition:background-color .2s ease}.ptz--btn.current,.ptz--btn.current:hover{background-color:#c5e6ff}.ptz--btn.current{border-color:#7bc7ff}.ptz--btn:hover{color:#000;background-color:#e3f2fd}.ptz--btn--side-left{margin-right:-3px;border-top-right-radius:0;border-bottom-right-radius:0}.ptz--btn--side-right{margin-left:-3px;border-top-left-radius:0;border-bottom-left-radius:0}.ptz--size-10{font-size:10px;line-height:13px;padding:5px 8px}.ptz--size-11{font-size:11px;line-height:14px;padding:6px 9px}.ptz--size-12{font-size:12px;line-height:15px;padding:7px 10px}.ptz--size-13{font-size:13px;line-height:16px;padding:8px 11px}.ptz--size-14{font-size:14px;line-height:17px;padding:9px 12px}.ptz--size-15{font-size:15px;line-height:18px;padding:10px 13px}.ptz--size-16{font-size:16px;line-height:19px;padding:11px 14px}.ptz--size-17{font-size:17px;line-height:20px;padding:12px 15px}.ptz--size-18{font-size:18px;line-height:21px;padding:13px 16px}.ptz--size-19{font-size:19px;line-height:22px;padding:14px 17px}.ptz--size-20{font-size:20px;line-height:23px;padding:15px 18px}.ptz--size-21{font-size:21px;line-height:24px;padding:16px 19px}.ptz--size-22{font-size:22px;line-height:25px;padding:17px 20px}.ptz--size-23{font-size:23px;line-height:26px;padding:18px 21px}.ptz--size-24{font-size:24px;line-height:27px;padding:19px 22px}.ptz--size-25{font-size:25px;line-height:28px;padding:20px 23px}
|
data/ptz/reset.css.css
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
.ptz--reset * {
|
2
|
+
margin: 0;
|
3
|
+
padding: 0;
|
4
|
+
border: 0;
|
5
|
+
outline: 0;
|
6
|
+
box-sizing: border-box;
|
7
|
+
}
|
8
|
+
|
9
|
+
.ptz--reset *:hover, .ptz--reset *:active, .ptz--reset *:focus {
|
10
|
+
outline: 0;
|
11
|
+
}
|
12
|
+
|
13
|
+
.ptz--reset *::after, .ptz--reset *::before {
|
14
|
+
box-sizing: border-box;
|
15
|
+
}
|
16
|
+
|
17
|
+
body {
|
18
|
+
color: black;
|
19
|
+
font-size: 10px;
|
20
|
+
line-height: 125%;
|
21
|
+
background: white;
|
22
|
+
}
|
23
|
+
|
24
|
+
a img {
|
25
|
+
border: none;
|
26
|
+
}
|
27
|
+
|
28
|
+
img {
|
29
|
+
vertical-align: top;
|
30
|
+
}
|
31
|
+
|
32
|
+
a {
|
33
|
+
text-decoration: none;
|
34
|
+
}
|
35
|
+
|
36
|
+
a:hover {
|
37
|
+
text-decoration: none;
|
38
|
+
}
|
39
|
+
|
40
|
+
ol, ul {
|
41
|
+
list-style: none;
|
42
|
+
}
|
43
|
+
|
44
|
+
li {
|
45
|
+
list-style-position: outside;
|
46
|
+
}
|
47
|
+
|
48
|
+
table, tr, th, td {
|
49
|
+
border-collapse: collapse;
|
50
|
+
vertical-align: top;
|
51
|
+
border-spacing: 0;
|
52
|
+
}
|
53
|
+
|
54
|
+
th {
|
55
|
+
font-weight: bold;
|
56
|
+
}
|
57
|
+
|
58
|
+
::-moz-focus-inner {
|
59
|
+
border: 0;
|
60
|
+
margin: 0;
|
61
|
+
padding: 0;
|
62
|
+
outline: 0;
|
63
|
+
}
|
64
|
+
|
65
|
+
input::-moz-placeholder {
|
66
|
+
color: #ccc !important;
|
67
|
+
}
|
68
|
+
|
69
|
+
input:-ms-input-placeholder {
|
70
|
+
color: #ccc !important;
|
71
|
+
}
|
72
|
+
|
73
|
+
input::-webkit-input-placeholder {
|
74
|
+
color: #ccc !important;
|
75
|
+
}
|
76
|
+
|
77
|
+
input:focus::-webkit-input-placeholder {
|
78
|
+
color: transparent !important;
|
79
|
+
}
|
80
|
+
|
81
|
+
input[type=submit] {
|
82
|
+
cursor: pointer;
|
83
|
+
}
|
data/ptz/sizes.css.css
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
.ptz--size-10{font-size:10px;line-height:13px;padding:5px 8px}.ptz--size-11{font-size:11px;line-height:14px;padding:6px 9px}.ptz--size-12{font-size:12px;line-height:15px;padding:7px 10px}.ptz--size-13{font-size:13px;line-height:16px;padding:8px 11px}.ptz--size-14{font-size:14px;line-height:17px;padding:9px 12px}.ptz--size-15{font-size:15px;line-height:18px;padding:10px 13px}.ptz--size-16{font-size:16px;line-height:19px;padding:11px 14px}.ptz--size-17{font-size:17px;line-height:20px;padding:12px 15px}.ptz--size-18{font-size:18px;line-height:21px;padding:13px 16px}.ptz--size-19{font-size:19px;line-height:22px;padding:14px 17px}.ptz--size-20{font-size:20px;line-height:23px;padding:15px 18px}.ptz--size-21{font-size:21px;line-height:24px;padding:16px 19px}.ptz--size-22{font-size:22px;line-height:25px;padding:17px 20px}.ptz--size-23{font-size:23px;line-height:26px;padding:18px 21px}.ptz--size-24{font-size:24px;line-height:27px;padding:19px 22px}.ptz--size-25{font-size:25px;line-height:28px;padding:20px 23px}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: protozaur
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilya N. Zykin
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -57,10 +57,29 @@ files:
|
|
57
57
|
- app/assets/stylesheets/ptz/reset.css.sass
|
58
58
|
- bin/console
|
59
59
|
- bin/setup
|
60
|
+
- bower.json
|
60
61
|
- docs/logo_550x550.jpg
|
62
|
+
- gulp/Gulpfile.coffee
|
63
|
+
- gulp/Gulpfile.js
|
64
|
+
- gulp/README.md
|
65
|
+
- gulp/gulp_tasks/_params.coffee
|
66
|
+
- gulp/gulp_tasks/css.coffee
|
67
|
+
- gulp/gulp_tasks/livereload.coffee
|
68
|
+
- gulp/gulp_tasks/log.coffee
|
69
|
+
- gulp/gulp_tasks/sass.coffee
|
70
|
+
- gulp/gulp_tasks/tools.coffee
|
71
|
+
- gulp/package.json
|
61
72
|
- lib/protozaur.rb
|
62
73
|
- lib/protozaur/version.rb
|
74
|
+
- package.json
|
63
75
|
- protozaur.gemspec
|
76
|
+
- ptz/base.css.css
|
77
|
+
- ptz/framework.css.css
|
78
|
+
- ptz/inputs-buttons/base.css.css
|
79
|
+
- ptz/inputs-buttons/sizes.css.css
|
80
|
+
- ptz/protozaur.min.css
|
81
|
+
- ptz/reset.css.css
|
82
|
+
- ptz/sizes.css.css
|
64
83
|
homepage: http://github.com/the-teacher/protozaur
|
65
84
|
licenses:
|
66
85
|
- MIT
|
@@ -82,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
101
|
version: '0'
|
83
102
|
requirements: []
|
84
103
|
rubyforge_project:
|
85
|
-
rubygems_version: 2.5.
|
104
|
+
rubygems_version: 2.5.1
|
86
105
|
signing_key:
|
87
106
|
specification_version: 4
|
88
107
|
summary: Protozaur CSS framework
|