-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yago Perez Vazquez
committed
Apr 19, 2012
0 parents
commit 466c939
Showing
148 changed files
with
88,359 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
|
||
#ignore thumbnails created by windows | ||
Thumbs.db | ||
#Ignore files build by Visual Studio | ||
*.obj | ||
*.exe | ||
*.pdb | ||
*.user | ||
*.aps | ||
*.pch | ||
*.vspscc | ||
*_i.c | ||
*_p.c | ||
*.ncb | ||
*.suo | ||
*.tlb | ||
*.tlh | ||
*.bak | ||
*.cache | ||
*.ilk | ||
*.log | ||
[Bb]in | ||
[Dd]ebug*/ | ||
*.lib | ||
*.sbr | ||
obj/ | ||
[Rr]elease*/ | ||
_ReSharper*/ | ||
[Tt]est[Rr]esult* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 11 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MVCSPAApplication", "MVCSPAApplication\MVCSPAApplication.csproj", "{6122FE4A-26FB-4EAB-89AB-A47483228029}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{6122FE4A-26FB-4EAB-89AB-A47483228029}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{6122FE4A-26FB-4EAB-89AB-A47483228029}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{6122FE4A-26FB-4EAB-89AB-A47483228029}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{6122FE4A-26FB-4EAB-89AB-A47483228029}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* Clase para cada producto mostrado */ | ||
.prod { | ||
background-color: #F5F5F5; | ||
position:relative; | ||
border: 2px solid #888888; | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
-moz-border-radius: 5px; | ||
border-radius: 5px; | ||
-moz-box-shadow: 10px 10px 5px #888; | ||
-webkit-box-shadow: 10px 10px 5px #888; | ||
box-shadow: 10px 10px 5px #888; | ||
padding:1em; | ||
margin-top:2% !important; | ||
} | ||
|
||
/* Sticky footer */ | ||
|
||
html, body { | ||
height: 100%; | ||
} | ||
|
||
.wrapper { | ||
min-height: 100%; | ||
height: auto !important; | ||
height: 100%; | ||
margin: 0 auto -3em; | ||
} | ||
|
||
|
||
.push { | ||
height: 4em; | ||
} | ||
|
||
.footer | ||
{ | ||
padding: 2% 2% 2% 5%; | ||
background-color: #3F9FD9; | ||
height: 4em; | ||
margin-left:-20px; | ||
margin-right: -20px; | ||
} | ||
|
||
.footer h3 | ||
{ | ||
color: #F5F5F5; | ||
} | ||
|
||
.container-fluid | ||
{ | ||
padding-top: 60px; | ||
} |
Oops, something went wrong.