├── bin
├── Test.dll
└── Test.pdb
├── font
├── .DS_Store
├── iconic_stroke.eot
├── iconic_stroke.otf
├── iconic_stroke.ttf
├── sosa-regular-webfont.eot
├── sosa-regular-webfont.ttf
├── iconic_stroke-webfont.eot
├── iconic_stroke-webfont.ttf
├── iconic_stroke-webfont.woff
├── sosa-regular-webfont.woff
├── iconic_stroke.svg
└── iconic_stroke-webfont.svg
├── images
├── Gear-128.png
└── mobile.png
├── obj
└── Debug
│ ├── Test.dll
│ ├── Test.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ └── Test.csproj.FileListAbsolute.txt
├── Web.config
├── lamp.aspx.cs
├── mac.aspx.cs
├── test0.aspx.cs
├── test1.aspx.cs
├── test2.aspx.cs
├── default.aspx.cs
├── menuResponsive.aspx.cs
├── mac.aspx.designer.cs
├── lamp.aspx.designer.cs
├── test0.aspx.designer.cs
├── test1.aspx.designer.cs
├── test2.aspx.designer.cs
├── default.aspx.designer.cs
├── menuResponsive.aspx.designer.cs
├── test0.aspx
├── LICENSE
├── Test.csproj.user
├── test1.aspx
├── Web.Debug.config
├── Web.Release.config
├── Properties
└── AssemblyInfo.cs
├── css
├── StyleSheet1.css
├── demo.css
├── simpletextrotator.css
├── StyleSheet2.css
├── normalize.css
├── fakeLoader.css
└── grid.css
├── js
├── fakeLoader.min.js
├── jquery.simple-text-rotator.js
├── viewportchecker.js
└── fakeLoader.js
├── default.aspx
├── lamp.aspx
├── mac.aspx
├── Test.csproj
├── menuResponsive.aspx
└── test2.aspx
/bin/Test.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/bin/Test.dll
--------------------------------------------------------------------------------
/bin/Test.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/bin/Test.pdb
--------------------------------------------------------------------------------
/font/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/font/.DS_Store
--------------------------------------------------------------------------------
/images/Gear-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/images/Gear-128.png
--------------------------------------------------------------------------------
/images/mobile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/images/mobile.png
--------------------------------------------------------------------------------
/obj/Debug/Test.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/obj/Debug/Test.dll
--------------------------------------------------------------------------------
/obj/Debug/Test.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/obj/Debug/Test.pdb
--------------------------------------------------------------------------------
/font/iconic_stroke.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/font/iconic_stroke.eot
--------------------------------------------------------------------------------
/font/iconic_stroke.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/font/iconic_stroke.otf
--------------------------------------------------------------------------------
/font/iconic_stroke.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/font/iconic_stroke.ttf
--------------------------------------------------------------------------------
/font/sosa-regular-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/font/sosa-regular-webfont.eot
--------------------------------------------------------------------------------
/font/sosa-regular-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/font/sosa-regular-webfont.ttf
--------------------------------------------------------------------------------
/font/iconic_stroke-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/font/iconic_stroke-webfont.eot
--------------------------------------------------------------------------------
/font/iconic_stroke-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/font/iconic_stroke-webfont.ttf
--------------------------------------------------------------------------------
/font/iconic_stroke-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/font/iconic_stroke-webfont.woff
--------------------------------------------------------------------------------
/font/sosa-regular-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/font/sosa-regular-webfont.woff
--------------------------------------------------------------------------------
/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iQuartz/test/master/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
--------------------------------------------------------------------------------
/Web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/lamp.aspx.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web;
5 | using System.Web.UI;
6 | using System.Web.UI.WebControls;
7 |
8 | namespace Test
9 | {
10 | public partial class lamp : System.Web.UI.Page
11 | {
12 | protected void Page_Load(object sender, EventArgs e)
13 | {
14 |
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/mac.aspx.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web;
5 | using System.Web.UI;
6 | using System.Web.UI.WebControls;
7 |
8 | namespace Test
9 | {
10 | public partial class mac : System.Web.UI.Page
11 | {
12 | protected void Page_Load(object sender, EventArgs e)
13 | {
14 |
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/obj/Debug/Test.csproj.FileListAbsolute.txt:
--------------------------------------------------------------------------------
1 | c:\users\supachaiyin\documents\visual studio 2010\Projects\Test\Test\bin\Test.dll
2 | c:\users\supachaiyin\documents\visual studio 2010\Projects\Test\Test\bin\Test.pdb
3 | c:\users\supachaiyin\documents\visual studio 2010\Projects\Test\Test\obj\Debug\Test.dll
4 | c:\users\supachaiyin\documents\visual studio 2010\Projects\Test\Test\obj\Debug\Test.pdb
5 |
--------------------------------------------------------------------------------
/test0.aspx.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web;
5 | using System.Web.UI;
6 | using System.Web.UI.WebControls;
7 |
8 | namespace Test
9 | {
10 | public partial class test0 : System.Web.UI.Page
11 | {
12 | protected void Page_Load(object sender, EventArgs e)
13 | {
14 |
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/test1.aspx.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web;
5 | using System.Web.UI;
6 | using System.Web.UI.WebControls;
7 |
8 | namespace Test
9 | {
10 | public partial class test1 : System.Web.UI.Page
11 | {
12 | protected void Page_Load(object sender, EventArgs e)
13 | {
14 |
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/test2.aspx.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web;
5 | using System.Web.UI;
6 | using System.Web.UI.WebControls;
7 |
8 | namespace Test
9 | {
10 | public partial class test2 : System.Web.UI.Page
11 | {
12 | protected void Page_Load(object sender, EventArgs e)
13 | {
14 |
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/default.aspx.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web;
5 | using System.Web.UI;
6 | using System.Web.UI.WebControls;
7 |
8 | namespace Test
9 | {
10 | public partial class _default : System.Web.UI.Page
11 | {
12 | protected void Page_Load(object sender, EventArgs e)
13 | {
14 |
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/menuResponsive.aspx.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web;
5 | using System.Web.UI;
6 | using System.Web.UI.WebControls;
7 |
8 | namespace Test
9 | {
10 | public partial class menuResponsive : System.Web.UI.Page
11 | {
12 | protected void Page_Load(object sender, EventArgs e)
13 | {
14 |
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/mac.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace Test
11 | {
12 |
13 |
14 | public partial class mac
15 | {
16 |
17 | ///
18 | /// form1 control.
19 | ///
20 | ///
21 | /// Auto-generated field.
22 | /// To modify move field declaration from designer file to code-behind file.
23 | ///
24 | protected global::System.Web.UI.HtmlControls.HtmlForm form1;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/lamp.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace Test
11 | {
12 |
13 |
14 | public partial class lamp
15 | {
16 |
17 | ///
18 | /// form1 control.
19 | ///
20 | ///
21 | /// Auto-generated field.
22 | /// To modify move field declaration from designer file to code-behind file.
23 | ///
24 | protected global::System.Web.UI.HtmlControls.HtmlForm form1;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/test0.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace Test
11 | {
12 |
13 |
14 | public partial class test0
15 | {
16 |
17 | ///
18 | /// form1 control.
19 | ///
20 | ///
21 | /// Auto-generated field.
22 | /// To modify move field declaration from designer file to code-behind file.
23 | ///
24 | protected global::System.Web.UI.HtmlControls.HtmlForm form1;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/test1.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace Test
11 | {
12 |
13 |
14 | public partial class test1
15 | {
16 |
17 | ///
18 | /// form1 control.
19 | ///
20 | ///
21 | /// Auto-generated field.
22 | /// To modify move field declaration from designer file to code-behind file.
23 | ///
24 | protected global::System.Web.UI.HtmlControls.HtmlForm form1;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/test2.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace Test
11 | {
12 |
13 |
14 | public partial class test2
15 | {
16 |
17 | ///
18 | /// form1 control.
19 | ///
20 | ///
21 | /// Auto-generated field.
22 | /// To modify move field declaration from designer file to code-behind file.
23 | ///
24 | protected global::System.Web.UI.HtmlControls.HtmlForm form1;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/default.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace Test {
11 |
12 |
13 | public partial class _default {
14 |
15 | ///
16 | /// form1 control.
17 | ///
18 | ///
19 | /// Auto-generated field.
20 | /// To modify move field declaration from designer file to code-behind file.
21 | ///
22 | protected global::System.Web.UI.HtmlControls.HtmlForm form1;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/menuResponsive.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace Test
11 | {
12 |
13 |
14 | public partial class menuResponsive
15 | {
16 |
17 | ///
18 | /// form1 control.
19 | ///
20 | ///
21 | /// Auto-generated field.
22 | /// To modify move field declaration from designer file to code-behind file.
23 | ///
24 | protected global::System.Web.UI.HtmlControls.HtmlForm form1;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/test0.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="test0.aspx.cs" Inherits="Test.test0" %>
2 |
3 |
4 |
5 |
6 |
7 |
107 |
108 |
109 |
--------------------------------------------------------------------------------
/font/iconic_stroke.svg:
--------------------------------------------------------------------------------
1 |