From 78201cca1ea8f9a72e72f13bfe430703540f2ffd Mon Sep 17 00:00:00 2001
From: Alondra-24 <125396839+Alondra-24@users.noreply.github.com>
Date: Thu, 21 Mar 2024 15:46:55 +0000
Subject: [PATCH 1/2] hi
---
.local/share/rippkgs-index.sqlite | 1 +
.replit | 185 ++++++++++++++++++++++++++++++
contact.html | 5 +-
index.html | 4 +-
projects.html | 8 +-
replit.nix | 6 +
style.css | 2 +-
7 files changed, 204 insertions(+), 7 deletions(-)
create mode 120000 .local/share/rippkgs-index.sqlite
create mode 100644 .replit
create mode 100644 replit.nix
diff --git a/.local/share/rippkgs-index.sqlite b/.local/share/rippkgs-index.sqlite
new file mode 120000
index 0000000..3f447ae
--- /dev/null
+++ b/.local/share/rippkgs-index.sqlite
@@ -0,0 +1 @@
+/etc/replit/rippkgs-indices/stable-22_11.sqlite
\ No newline at end of file
diff --git a/.replit b/.replit
new file mode 100644
index 0000000..92b567b
--- /dev/null
+++ b/.replit
@@ -0,0 +1,185 @@
+hidden=[".config"]
+
+# hosting is currently hardcoded for this language
+# [hosting]
+# route = "/"
+# directory= "/"
+
+[nix]
+channel = "stable-22_11"
+
+[languages.html]
+pattern = "**/*.html"
+ [languages.html.languageServer]
+start = "vscode-html-language-server --stdio"
+ [languages.html.languageServer.initializationOptions]
+ provideFormatter = true
+ [languages.html.languageServer.configuration.html]
+ customData = [ ]
+ autoCreateQuotes = true
+ autoClosingTags = true
+ mirrorCursorOnMatchingTag = false
+
+ [languages.html.languageServer.configuration.html.completion]
+ attributeDefaultValue = "doublequotes"
+
+ [languages.html.languageServer.configuration.html.format]
+ enable = true
+ wrapLineLength = 120
+ unformatted = "wbr"
+ contentUnformatted = "pre,code,textarea"
+ indentInnerHtml = false
+ preserveNewLines = true
+ indentHandlebars = false
+ endWithNewline = false
+ extraLiners = "head, body, /html"
+ wrapAttributes = "auto"
+ templating = false
+ unformattedContentDelimiter = ""
+
+ [languages.html.languageServer.configuration.html.suggest]
+ html5 = true
+
+ [languages.html.languageServer.configuration.html.validate]
+ scripts = true
+ styles = true
+
+ [languages.html.languageServer.configuration.html.hover]
+ documentation = true
+ references = true
+
+ [languages.html.languageServer.configuration.html.trace]
+ server = "off"
+
+[languages.javascript]
+pattern = "**/{*.js,*.jsx,*.ts,*.tsx,*.mjs,*.cjs}"
+ [languages.javascript.languageServer]
+ start = "typescript-language-server --stdio"
+
+[languages.css]
+pattern = "**/{*.less,*.scss,*.css}"
+ [languages.css.languageServer.initializationOptions]
+ provideFormatter = true
+ [languages.css.languageServer]
+ start = "vscode-css-language-server --stdio"
+ [languages.css.languageServer.configuration.css]
+ customData = [ ]
+ validate = true
+
+ [languages.css.languageServer.configuration.css.completion]
+ triggerPropertyValueCompletion = true
+ completePropertyWithSemicolon = true
+
+ [languages.css.languageServer.configuration.css.hover]
+ documentation = true
+ references = true
+
+ [languages.css.languageServer.configuration.css.lint]
+ # Configure linting
+ # ignore = don't show any warning or error
+ # warning = show yellow underline
+ # error = show red underline
+ argumentsInColorFunction = "error" # Invalid number of parameters
+ boxModel = "ignore" # Do not use width or height when using padding or border
+ compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties"
+ duplicateProperties = "warning" # Do not use duplicate style definitions
+ emptyRules = "warning" # Do not use empty rulesets
+ float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
+ fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties
+ hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers
+ idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
+ ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older
+ important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
+ importStatement = "ignore" # Import statements do not load in parallel
+ propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display
+ universalSelector = "ignore" # The universal selector (*) is known to be slow
+ unknownAtRules = "warning" # Unknown at-rule
+ unknownProperties = "warning" # Unknown property.
+ validProperties = [ ] # add some properties that the linter doesn't know about
+ unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property.
+ vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property
+ zeroUnits = "ignore" # No unit for zero needed
+
+ [languages.css.languageServer.configuration.css.trace]
+ server = "off"
+
+ [languages.css.languageServer.configuration.scss]
+ validate = true
+
+ [languages.css.languageServer.configuration.scss.completion]
+ triggerPropertyValueCompletion = true
+ completePropertyWithSemicolon = true
+
+ [languages.css.languageServer.configuration.scss.hover]
+ documentation = true
+ references = true
+
+ [languages.css.languageServer.configuration.scss.lint]
+ # Configure linting
+ # ignore = don't show any warning or error
+ # warning = show yellow underline
+ # error = show red underline
+ argumentsInColorFunction = "error" # Invalid number of parameters
+ boxModel = "ignore" # Do not use width or height when using padding or border
+ compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties"
+ duplicateProperties = "warning" # Do not use duplicate style definitions
+ emptyRules = "warning" # Do not use empty rulesets
+ float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
+ fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties
+ hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers
+ idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
+ ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older
+ important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
+ importStatement = "ignore" # Import statements do not load in parallel
+ propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display
+ universalSelector = "ignore" # The universal selector (*) is known to be slow
+ unknownAtRules = "warning" # Unknown at-rule
+ unknownProperties = "warning" # Unknown property.
+ validProperties = [ ] # add some properties that the linter doesn't know about
+ unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property.
+ vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property
+ zeroUnits = "ignore" # No unit for zero needed"
+
+ [languages.css.languageServer.configuration.less]
+ validate = true
+
+ [languages.css.languageServer.configuration.less.completion]
+ triggerPropertyValueCompletion = true
+ completePropertyWithSemicolon = true
+
+ [languages.css.languageServer.configuration.less.hover]
+ documentation = true
+ references = true
+
+ [languages.css.languageServer.configuration.less.lint]
+ # Configure linting
+ # ignore = don't show any warning or error
+ # warning = show yellow underline
+ # error = show red underline
+ argumentsInColorFunction = "error" # Invalid number of parameters
+ boxModel = "ignore" # Do not use width or height when using padding or border
+ compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties"
+ duplicateProperties = "warning" # Do not use duplicate style definitions
+ emptyRules = "warning" # Do not use empty rulesets
+ float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
+ fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties
+ hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers
+ idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
+ ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older
+ important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
+ importStatement = "ignore" # Import statements do not load in parallel
+ propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display
+ universalSelector = "ignore" # The universal selector (*) is known to be slow
+ unknownAtRules = "warning" # Unknown at-rule
+ unknownProperties = "warning" # Unknown property.
+ validProperties = [ ] # add some properties that the linter doesn't know about
+ unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property.
+ vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property
+ zeroUnits = "ignore" # No unit for zero needed"
+
+[gitHubImport]
+requiredFiles = [".replit", "replit.nix", ".config"]
+
+[deployment]
+publicDir = "/"
+deploymentTarget = "static"
\ No newline at end of file
diff --git a/contact.html b/contact.html
index a165746..68da240 100644
--- a/contact.html
+++ b/contact.html
@@ -31,8 +31,9 @@
-
Your Contact Banner
-
Any message you want to put.
+
How to contact me
+
Plese dont contect me.
+
diff --git a/index.html b/index.html
index 80f1958..a1045d1 100644
--- a/index.html
+++ b/index.html
@@ -29,8 +29,8 @@
-
Your Hompage Banner
-
Any message you want to put.
+
Hompage
+
Hello, I hope you enjoy my portfolio.Feel free to look around, fead back is apricaated.
diff --git a/projects.html b/projects.html
index 67503e1..e9d4072 100644
--- a/projects.html
+++ b/projects.html
@@ -32,8 +32,12 @@
-
Your Projects Banner
-
Any message you want to put.
+
My Projects
+
Project1
+ project2
+ project3
+
+
diff --git a/replit.nix b/replit.nix
new file mode 100644
index 0000000..90a4e7f
--- /dev/null
+++ b/replit.nix
@@ -0,0 +1,6 @@
+{ pkgs }: {
+ deps = [
+ pkgs.nodePackages.vscode-langservers-extracted
+ pkgs.nodePackages.typescript-language-server
+ ];
+}
\ No newline at end of file
diff --git a/style.css b/style.css
index ad668cd..f2d8edf 100644
--- a/style.css
+++ b/style.css
@@ -16,7 +16,7 @@
}
body {
- background-color: #f9d60e;
+ background-color: #4d6534;
padding: 20px;
font-family: Arial;
}
From 533767635691277196ffe06eaaaa9ff1b94e32d6 Mon Sep 17 00:00:00 2001
From: Alondra-24 <125396839+Alondra-24@users.noreply.github.com>
Date: Thu, 2 May 2024 15:16:11 +0000
Subject: [PATCH 2/2] I changed the color
---
.replit | 185 +++++++++++++++++++++++++++++++++++++++++++++++++++
about.html | 4 +-
contact.html | 4 +-
replit.nix | 6 ++
style.css | 2 +-
5 files changed, 196 insertions(+), 5 deletions(-)
create mode 100644 .replit
create mode 100644 replit.nix
diff --git a/.replit b/.replit
new file mode 100644
index 0000000..92b567b
--- /dev/null
+++ b/.replit
@@ -0,0 +1,185 @@
+hidden=[".config"]
+
+# hosting is currently hardcoded for this language
+# [hosting]
+# route = "/"
+# directory= "/"
+
+[nix]
+channel = "stable-22_11"
+
+[languages.html]
+pattern = "**/*.html"
+ [languages.html.languageServer]
+start = "vscode-html-language-server --stdio"
+ [languages.html.languageServer.initializationOptions]
+ provideFormatter = true
+ [languages.html.languageServer.configuration.html]
+ customData = [ ]
+ autoCreateQuotes = true
+ autoClosingTags = true
+ mirrorCursorOnMatchingTag = false
+
+ [languages.html.languageServer.configuration.html.completion]
+ attributeDefaultValue = "doublequotes"
+
+ [languages.html.languageServer.configuration.html.format]
+ enable = true
+ wrapLineLength = 120
+ unformatted = "wbr"
+ contentUnformatted = "pre,code,textarea"
+ indentInnerHtml = false
+ preserveNewLines = true
+ indentHandlebars = false
+ endWithNewline = false
+ extraLiners = "head, body, /html"
+ wrapAttributes = "auto"
+ templating = false
+ unformattedContentDelimiter = ""
+
+ [languages.html.languageServer.configuration.html.suggest]
+ html5 = true
+
+ [languages.html.languageServer.configuration.html.validate]
+ scripts = true
+ styles = true
+
+ [languages.html.languageServer.configuration.html.hover]
+ documentation = true
+ references = true
+
+ [languages.html.languageServer.configuration.html.trace]
+ server = "off"
+
+[languages.javascript]
+pattern = "**/{*.js,*.jsx,*.ts,*.tsx,*.mjs,*.cjs}"
+ [languages.javascript.languageServer]
+ start = "typescript-language-server --stdio"
+
+[languages.css]
+pattern = "**/{*.less,*.scss,*.css}"
+ [languages.css.languageServer.initializationOptions]
+ provideFormatter = true
+ [languages.css.languageServer]
+ start = "vscode-css-language-server --stdio"
+ [languages.css.languageServer.configuration.css]
+ customData = [ ]
+ validate = true
+
+ [languages.css.languageServer.configuration.css.completion]
+ triggerPropertyValueCompletion = true
+ completePropertyWithSemicolon = true
+
+ [languages.css.languageServer.configuration.css.hover]
+ documentation = true
+ references = true
+
+ [languages.css.languageServer.configuration.css.lint]
+ # Configure linting
+ # ignore = don't show any warning or error
+ # warning = show yellow underline
+ # error = show red underline
+ argumentsInColorFunction = "error" # Invalid number of parameters
+ boxModel = "ignore" # Do not use width or height when using padding or border
+ compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties"
+ duplicateProperties = "warning" # Do not use duplicate style definitions
+ emptyRules = "warning" # Do not use empty rulesets
+ float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
+ fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties
+ hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers
+ idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
+ ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older
+ important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
+ importStatement = "ignore" # Import statements do not load in parallel
+ propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display
+ universalSelector = "ignore" # The universal selector (*) is known to be slow
+ unknownAtRules = "warning" # Unknown at-rule
+ unknownProperties = "warning" # Unknown property.
+ validProperties = [ ] # add some properties that the linter doesn't know about
+ unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property.
+ vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property
+ zeroUnits = "ignore" # No unit for zero needed
+
+ [languages.css.languageServer.configuration.css.trace]
+ server = "off"
+
+ [languages.css.languageServer.configuration.scss]
+ validate = true
+
+ [languages.css.languageServer.configuration.scss.completion]
+ triggerPropertyValueCompletion = true
+ completePropertyWithSemicolon = true
+
+ [languages.css.languageServer.configuration.scss.hover]
+ documentation = true
+ references = true
+
+ [languages.css.languageServer.configuration.scss.lint]
+ # Configure linting
+ # ignore = don't show any warning or error
+ # warning = show yellow underline
+ # error = show red underline
+ argumentsInColorFunction = "error" # Invalid number of parameters
+ boxModel = "ignore" # Do not use width or height when using padding or border
+ compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties"
+ duplicateProperties = "warning" # Do not use duplicate style definitions
+ emptyRules = "warning" # Do not use empty rulesets
+ float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
+ fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties
+ hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers
+ idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
+ ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older
+ important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
+ importStatement = "ignore" # Import statements do not load in parallel
+ propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display
+ universalSelector = "ignore" # The universal selector (*) is known to be slow
+ unknownAtRules = "warning" # Unknown at-rule
+ unknownProperties = "warning" # Unknown property.
+ validProperties = [ ] # add some properties that the linter doesn't know about
+ unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property.
+ vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property
+ zeroUnits = "ignore" # No unit for zero needed"
+
+ [languages.css.languageServer.configuration.less]
+ validate = true
+
+ [languages.css.languageServer.configuration.less.completion]
+ triggerPropertyValueCompletion = true
+ completePropertyWithSemicolon = true
+
+ [languages.css.languageServer.configuration.less.hover]
+ documentation = true
+ references = true
+
+ [languages.css.languageServer.configuration.less.lint]
+ # Configure linting
+ # ignore = don't show any warning or error
+ # warning = show yellow underline
+ # error = show red underline
+ argumentsInColorFunction = "error" # Invalid number of parameters
+ boxModel = "ignore" # Do not use width or height when using padding or border
+ compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties"
+ duplicateProperties = "warning" # Do not use duplicate style definitions
+ emptyRules = "warning" # Do not use empty rulesets
+ float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
+ fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties
+ hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers
+ idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
+ ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older
+ important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
+ importStatement = "ignore" # Import statements do not load in parallel
+ propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display
+ universalSelector = "ignore" # The universal selector (*) is known to be slow
+ unknownAtRules = "warning" # Unknown at-rule
+ unknownProperties = "warning" # Unknown property.
+ validProperties = [ ] # add some properties that the linter doesn't know about
+ unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property.
+ vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property
+ zeroUnits = "ignore" # No unit for zero needed"
+
+[gitHubImport]
+requiredFiles = [".replit", "replit.nix", ".config"]
+
+[deployment]
+publicDir = "/"
+deploymentTarget = "static"
\ No newline at end of file
diff --git a/about.html b/about.html
index 9f2a38f..7846242 100644
--- a/about.html
+++ b/about.html
@@ -26,8 +26,8 @@
-
Your About Banner
-
Any message you want to put.
+
Alondra
+
I am a high schools student who enjoys wacthing football.I love highland cows and wish to one dy have a farm with a few of them.
diff --git a/contact.html b/contact.html
index a165746..a752ce0 100644
--- a/contact.html
+++ b/contact.html
@@ -31,8 +31,8 @@
-
Your Contact Banner
-
Any message you want to put.
+
Email:
+
areyes2@intrinsicschools.org
diff --git a/replit.nix b/replit.nix
new file mode 100644
index 0000000..90a4e7f
--- /dev/null
+++ b/replit.nix
@@ -0,0 +1,6 @@
+{ pkgs }: {
+ deps = [
+ pkgs.nodePackages.vscode-langservers-extracted
+ pkgs.nodePackages.typescript-language-server
+ ];
+}
\ No newline at end of file
diff --git a/style.css b/style.css
index ad668cd..45d0eb6 100644
--- a/style.css
+++ b/style.css
@@ -16,7 +16,7 @@
}
body {
- background-color: #f9d60e;
+ background-color: #8f9779;
padding: 20px;
font-family: Arial;
}