Skip to content

Commit

Permalink
MVCSPAApplication
Browse files Browse the repository at this point in the history
  • Loading branch information
Yago Perez Vazquez committed Apr 19, 2012
0 parents commit 466c939
Show file tree
Hide file tree
Showing 148 changed files with 88,359 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .gitignore
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*
20 changes: 20 additions & 0 deletions MVCSPAApplication.sln
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
53 changes: 53 additions & 0 deletions MVCSPAApplication/Content/Site.css
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;
}
Loading

0 comments on commit 466c939

Please sign in to comment.