Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/_base.scss')
-rw-r--r--assets/css/_base.scss37
1 files changed, 37 insertions, 0 deletions
diff --git a/assets/css/_base.scss b/assets/css/_base.scss
new file mode 100644
index 0000000..93d415e
--- /dev/null
+++ b/assets/css/_base.scss
@@ -0,0 +1,37 @@
+* {
+ margin: 0;
+ padding: 0;
+}
+
+body {
+ background: #fff;
+ color: $text-color;
+ font-family: $font-1;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+a {
+ text-decoration: none;
+ color: $text-color;
+
+ i {
+ padding: 0 0.2rem 0 0.25rem;
+ }
+
+ &:hover {
+ text-decoration: underline;
+ }
+
+ &:not(.no-external-icon)::after {
+ content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
+ margin: 0 0.2rem 0 0.25rem;
+ }
+}
+
+li {
+ list-style-type: square;
+ padding-left: 0px;
+ list-style-position: inside;
+ margin: 0.5rem 0;
+}