Fuente para codigo

This commit is contained in:
2021-12-17 20:26:54 -03:00
parent b021ef2d59
commit b72c27e20f
6 changed files with 45 additions and 2 deletions

8
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

10
.idea/danielcortes.xyz.iml generated Normal file
View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

8
.idea/modules.xml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/danielcortes.xyz.iml" filepath="$PROJECT_DIR$/.idea/danielcortes.xyz.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@@ -1,6 +1,11 @@
/******************************************************************************
=> MAIN STYLES
*******************************************************************************/
@font-face {
font-family: "Source Code Pro";
src: url("https://d3cby5jcb6zmtk.cloudfront.net/fonts/SourceCodePro/SourceCodePro-Regular.otf")
}
:root {
--background-color: hsl(10, 20%, 98%);
--foreground-color: hsl(10, 10%, 13%);
@@ -8,7 +13,7 @@
--primary-color: hsl(290, 86%, 43%);
--highlight-color: hsl(290, 57%, 30%);
--sans-font: "sans-serif";
--mono-font: "monospace";
--mono-font: "Source Code Pro";
}
html {
@@ -29,7 +34,7 @@ body {
}
code {
font-family: var(--mono-font);
font-family: var(--mono-font), monospace;
}
h1, h2 { margin: 0 0 .3em; }