Added pace.js

pull/13/head
tidusjar 9 years ago
parent 02d3118438
commit 5153afd3f1

@ -0,0 +1,19 @@
.pace {
-webkit-pointer-events: none;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
.pace-inactive {
display: none; }
.pace .pace-progress {
background: #ffa400;
position: fixed;
z-index: 2000;
top: 0;
right: 100%;
width: 100%;
height: 2px; }

@ -0,0 +1 @@
.pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;}.pace-inactive{display:none;}.pace .pace-progress{background:#ffa400;position:fixed;z-index:2000;top:0;right:100%;width:100%;height:2px;}

File diff suppressed because one or more lines are too long

@ -0,0 +1,24 @@
$primary-colour: rgb(255, 164, 0);
.pace {
-webkit-pointer-events: none;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.pace-inactive {
display: none;
}
.pace .pace-progress {
background: $primary-colour;
position: fixed;
z-index: 2000;
top: 0;
right: 100%;
width: 100%;
height: 2px;
}

@ -206,6 +206,13 @@
<Content Include="Content\jquery-2.2.1.min.js"> <Content Include="Content\jquery-2.2.1.min.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content> </Content>
<Content Include="Content\pace.css">
<DependentUpon>pace.scss</DependentUpon>
</Content>
<Content Include="Content\pace.min.css">
<DependentUpon>pace.css</DependentUpon>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Content\requests.js"> <Content Include="Content\requests.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content> </Content>
@ -222,6 +229,10 @@
<DependentUpon>compilerconfig.json</DependentUpon> <DependentUpon>compilerconfig.json</DependentUpon>
</None> </None>
<None Include="Content\custom.scss" /> <None Include="Content\custom.scss" />
<Content Include="Content\pace.min.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Include="Content\pace.scss" />
<None Include="NLog.xsd"> <None Include="NLog.xsd">
<SubType>Designer</SubType> <SubType>Designer</SubType>
</None> </None>

@ -9,6 +9,8 @@
<link rel="stylesheet" href="~/Content/custom.min.css" type="text/css"/> <link rel="stylesheet" href="~/Content/custom.min.css" type="text/css"/>
<link rel="stylesheet" href="~/Content/bootstrap.css" type="text/css"/> <link rel="stylesheet" href="~/Content/bootstrap.css" type="text/css"/>
<link rel="stylesheet" href="~/Content/font-awesome.css" type="text/css"/> <link rel="stylesheet" href="~/Content/font-awesome.css" type="text/css"/>
<link rel="stylesheet" href="~/Content/pace.min.css" type="text/css"/>
<!-- Scripts --> <!-- Scripts -->
<script src="/Content/jquery-2.2.1.min.js"></script> <script src="/Content/jquery-2.2.1.min.js"></script>
@ -16,6 +18,7 @@
<script src="/Content/bootstrap.min.js"></script> <script src="/Content/bootstrap.min.js"></script>
<script src="/Content/bootstrap-notify.min.js"></script> <script src="/Content/bootstrap-notify.min.js"></script>
<script src="/Content/site.js"></script> <script src="/Content/site.js"></script>
<script src="/Content/pace.min.js"></script>
</head> </head>
<body> <body>

@ -2,5 +2,9 @@
{ {
"outputFile": "Content/custom.css", "outputFile": "Content/custom.css",
"inputFile": "Content/custom.scss" "inputFile": "Content/custom.scss"
},
{
"outputFile": "Content/pace.css",
"inputFile": "Content/pace.scss"
} }
] ]
Loading…
Cancel
Save