Created css and added to project

This commit is contained in:
erri120 2019-09-25 15:58:59 +02:00
parent 37c6af9a6a
commit 3b017d6ce8
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135
3 changed files with 71 additions and 0 deletions

View File

@ -265,6 +265,9 @@
<ItemGroup>
<Resource Include="square_transparent_icon.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="css.css" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Fody.5.1.1\build\Fody.targets" Condition="Exists('..\packages\Fody.5.1.1\build\Fody.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">

1
Wabbajack/css-min.css vendored Normal file
View File

@ -0,0 +1 @@
*{margin:0;padding:0;border:0;font-size:100%;font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;vertical-align:baseline;-webkit-text-size-adjust:none;padding-left:10px;padding-right:10px}ul{list-style:none}q{quotes:none}q:after,q:before{content:'';content:none}h1,h2,h3,h4,h5,h6{color:#555;font-weight:400;line-height:1.5;margin:0}h3{margin:1em 0 1em .5em;text-align:left;text-decoration:underline}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;text-decoration:none}h2{font-size:1.85em;font-weight:300}h3{font-size:1.75em}h4{font-size:1.5em}h5{font-size:.9em}h6{font-size:.7em}a{color:#6cc091;text-decoration:underline}a:hover{text-decoration:none}code{background:rgba(144,144,144,.075);border-radius:0;border:solid 1px #dbdbdb;font-family:"Courier New",monospace;font-size:.9em}

67
Wabbajack/css.css Normal file
View File

@ -0,0 +1,67 @@
* {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
vertical-align: baseline;
-webkit-text-size-adjust: none;
padding-left: 10px;
padding-right: 10px;
}
ul {
list-style: none;
}
q {
quotes: none;
}
q:before , q:after {
content: '';
content: none;
}
h1, h2, h3, h4, h5, h6 {
color: #555;
font-weight: 400;
line-height: 1.5;
margin: 0 0 0 0;
}
h3 {
margin: 1em 0 1em 0.5em;
text-align: left;
text-decoration: underline;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
color: inherit;
text-decoration: none;
}
h2 {
font-size: 1.85em;
font-weight: 300;
}
h3 {
font-size: 1.75em;
}
h4 {
font-size: 1.5em;
}
h5 {
font-size: 0.9em;
}
h6 {
font-size: 0.7em;
}
a {
color: #6cc091;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
code {
background: rgba(144, 144, 144, 0.075);
border-radius: 0;
border: solid 1px #dbdbdb;
font-family: "Courier New", monospace;
font-size: 0.9em;
}