윤혜원

Merge branch 'master' into 'master'

Master



See merge request !7
Showing 109 changed files with 1320 additions and 0 deletions
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
1 +Copyright (c) 2010-2014 by tyPoland Lukasz Dziedzic (team@latofonts.com) with Reserved Font Name "Lato"
2 +
3 +This Font Software is licensed under the SIL Open Font License, Version 1.1.
4 +This license is copied below, and is also available with a FAQ at:
5 +http://scripts.sil.org/OFL
6 +
7 +
8 +-----------------------------------------------------------
9 +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10 +-----------------------------------------------------------
11 +
12 +PREAMBLE
13 +The goals of the Open Font License (OFL) are to stimulate worldwide
14 +development of collaborative font projects, to support the font creation
15 +efforts of academic and linguistic communities, and to provide a free and
16 +open framework in which fonts may be shared and improved in partnership
17 +with others.
18 +
19 +The OFL allows the licensed fonts to be used, studied, modified and
20 +redistributed freely as long as they are not sold by themselves. The
21 +fonts, including any derivative works, can be bundled, embedded,
22 +redistributed and/or sold with any software provided that any reserved
23 +names are not used by derivative works. The fonts and derivatives,
24 +however, cannot be released under any other type of license. The
25 +requirement for fonts to remain under this license does not apply
26 +to any document created using the fonts or their derivatives.
27 +
28 +DEFINITIONS
29 +"Font Software" refers to the set of files released by the Copyright
30 +Holder(s) under this license and clearly marked as such. This may
31 +include source files, build scripts and documentation.
32 +
33 +"Reserved Font Name" refers to any names specified as such after the
34 +copyright statement(s).
35 +
36 +"Original Version" refers to the collection of Font Software components as
37 +distributed by the Copyright Holder(s).
38 +
39 +"Modified Version" refers to any derivative made by adding to, deleting,
40 +or substituting -- in part or in whole -- any of the components of the
41 +Original Version, by changing formats or by porting the Font Software to a
42 +new environment.
43 +
44 +"Author" refers to any designer, engineer, programmer, technical
45 +writer or other person who contributed to the Font Software.
46 +
47 +PERMISSION & CONDITIONS
48 +Permission is hereby granted, free of charge, to any person obtaining
49 +a copy of the Font Software, to use, study, copy, merge, embed, modify,
50 +redistribute, and sell modified and unmodified copies of the Font
51 +Software, subject to the following conditions:
52 +
53 +1) Neither the Font Software nor any of its individual components,
54 +in Original or Modified Versions, may be sold by itself.
55 +
56 +2) Original or Modified Versions of the Font Software may be bundled,
57 +redistributed and/or sold with any software, provided that each copy
58 +contains the above copyright notice and this license. These can be
59 +included either as stand-alone text files, human-readable headers or
60 +in the appropriate machine-readable metadata fields within text or
61 +binary files as long as those fields can be easily viewed by the user.
62 +
63 +3) No Modified Version of the Font Software may use the Reserved Font
64 +Name(s) unless explicit written permission is granted by the corresponding
65 +Copyright Holder. This restriction only applies to the primary font name as
66 +presented to the users.
67 +
68 +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69 +Software shall not be used to promote, endorse or advertise any
70 +Modified Version, except to acknowledge the contribution(s) of the
71 +Copyright Holder(s) and the Author(s) or with their explicit written
72 +permission.
73 +
74 +5) The Font Software, modified or unmodified, in part or in whole,
75 +must be distributed entirely under this license, and must not be
76 +distributed under any other license. The requirement for fonts to
77 +remain under this license does not apply to any document created
78 +using the Font Software.
79 +
80 +TERMINATION
81 +This license becomes null and void if any of the above conditions are
82 +not met.
83 +
84 +DISCLAIMER
85 +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86 +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87 +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88 +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89 +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90 +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91 +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92 +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93 +OTHER DEALINGS IN THE FONT SOFTWARE.
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
1 +I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project,
2 +Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome,
3 +comprehensive icon sets or copy and paste your own.
4 +
5 +Please. Check it out.
6 +
7 +-Dave Gandy
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
1 +// Animated Icons
2 +// --------------------------
3 +
4 +.@{fa-css-prefix}-spin {
5 + -webkit-animation: fa-spin 2s infinite linear;
6 + animation: fa-spin 2s infinite linear;
7 +}
8 +
9 +.@{fa-css-prefix}-pulse {
10 + -webkit-animation: fa-spin 1s infinite steps(8);
11 + animation: fa-spin 1s infinite steps(8);
12 +}
13 +
14 +@-webkit-keyframes fa-spin {
15 + 0% {
16 + -webkit-transform: rotate(0deg);
17 + transform: rotate(0deg);
18 + }
19 + 100% {
20 + -webkit-transform: rotate(359deg);
21 + transform: rotate(359deg);
22 + }
23 +}
24 +
25 +@keyframes fa-spin {
26 + 0% {
27 + -webkit-transform: rotate(0deg);
28 + transform: rotate(0deg);
29 + }
30 + 100% {
31 + -webkit-transform: rotate(359deg);
32 + transform: rotate(359deg);
33 + }
34 +}
1 +// Bordered & Pulled
2 +// -------------------------
3 +
4 +.@{fa-css-prefix}-border {
5 + padding: .2em .25em .15em;
6 + border: solid .08em @fa-border-color;
7 + border-radius: .1em;
8 +}
9 +
10 +.@{fa-css-prefix}-pull-left { float: left; }
11 +.@{fa-css-prefix}-pull-right { float: right; }
12 +
13 +.@{fa-css-prefix} {
14 + &.@{fa-css-prefix}-pull-left { margin-right: .3em; }
15 + &.@{fa-css-prefix}-pull-right { margin-left: .3em; }
16 +}
17 +
18 +/* Deprecated as of 4.4.0 */
19 +.pull-right { float: right; }
20 +.pull-left { float: left; }
21 +
22 +.@{fa-css-prefix} {
23 + &.pull-left { margin-right: .3em; }
24 + &.pull-right { margin-left: .3em; }
25 +}
1 +// Base Class Definition
2 +// -------------------------
3 +
4 +.@{fa-css-prefix} {
5 + display: inline-block;
6 + font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
7 + font-size: inherit; // can't have font-size inherit on line above, so need to override
8 + text-rendering: auto; // optimizelegibility throws things off #1094
9 + -webkit-font-smoothing: antialiased;
10 + -moz-osx-font-smoothing: grayscale;
11 +
12 +}
1 +// Fixed Width Icons
2 +// -------------------------
3 +.@{fa-css-prefix}-fw {
4 + width: (18em / 14);
5 + text-align: center;
6 +}
1 +/*!
2 + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 + */
5 +
6 +@import "variables.less";
7 +@import "mixins.less";
8 +@import "path.less";
9 +@import "core.less";
10 +@import "larger.less";
11 +@import "fixed-width.less";
12 +@import "list.less";
13 +@import "bordered-pulled.less";
14 +@import "animated.less";
15 +@import "rotated-flipped.less";
16 +@import "stacked.less";
17 +@import "icons.less";
18 +@import "screen-reader.less";
This diff is collapsed. Click to expand it.
1 +// Icon Sizes
2 +// -------------------------
3 +
4 +/* makes the font 33% larger relative to the icon container */
5 +.@{fa-css-prefix}-lg {
6 + font-size: (4em / 3);
7 + line-height: (3em / 4);
8 + vertical-align: -15%;
9 +}
10 +.@{fa-css-prefix}-2x { font-size: 2em; }
11 +.@{fa-css-prefix}-3x { font-size: 3em; }
12 +.@{fa-css-prefix}-4x { font-size: 4em; }
13 +.@{fa-css-prefix}-5x { font-size: 5em; }
1 +// List Icons
2 +// -------------------------
3 +
4 +.@{fa-css-prefix}-ul {
5 + padding-left: 0;
6 + margin-left: @fa-li-width;
7 + list-style-type: none;
8 + > li { position: relative; }
9 +}
10 +.@{fa-css-prefix}-li {
11 + position: absolute;
12 + left: -@fa-li-width;
13 + width: @fa-li-width;
14 + top: (2em / 14);
15 + text-align: center;
16 + &.@{fa-css-prefix}-lg {
17 + left: (-@fa-li-width + (4em / 14));
18 + }
19 +}
1 +// Mixins
2 +// --------------------------
3 +
4 +.fa-icon() {
5 + display: inline-block;
6 + font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
7 + font-size: inherit; // can't have font-size inherit on line above, so need to override
8 + text-rendering: auto; // optimizelegibility throws things off #1094
9 + -webkit-font-smoothing: antialiased;
10 + -moz-osx-font-smoothing: grayscale;
11 +
12 +}
13 +
14 +.fa-icon-rotate(@degrees, @rotation) {
15 + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})";
16 + -webkit-transform: rotate(@degrees);
17 + -ms-transform: rotate(@degrees);
18 + transform: rotate(@degrees);
19 +}
20 +
21 +.fa-icon-flip(@horiz, @vert, @rotation) {
22 + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)";
23 + -webkit-transform: scale(@horiz, @vert);
24 + -ms-transform: scale(@horiz, @vert);
25 + transform: scale(@horiz, @vert);
26 +}
27 +
28 +
29 +// Only display content to screen readers. A la Bootstrap 4.
30 +//
31 +// See: http://a11yproject.com/posts/how-to-hide-content/
32 +
33 +.sr-only() {
34 + position: absolute;
35 + width: 1px;
36 + height: 1px;
37 + padding: 0;
38 + margin: -1px;
39 + overflow: hidden;
40 + clip: rect(0,0,0,0);
41 + border: 0;
42 +}
43 +
44 +// Use in conjunction with .sr-only to only display content when it's focused.
45 +//
46 +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
47 +//
48 +// Credit: HTML5 Boilerplate
49 +
50 +.sr-only-focusable() {
51 + &:active,
52 + &:focus {
53 + position: static;
54 + width: auto;
55 + height: auto;
56 + margin: 0;
57 + overflow: visible;
58 + clip: auto;
59 + }
60 +}
1 +/* FONT PATH
2 + * -------------------------- */
3 +
4 +@font-face {
5 + font-family: 'FontAwesome';
6 + src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
7 + src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
8 + url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
9 + url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
10 + url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
11 + url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
12 + // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 + font-weight: normal;
14 + font-style: normal;
15 +}
1 +// Rotated & Flipped Icons
2 +// -------------------------
3 +
4 +.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
5 +.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
6 +.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
7 +
8 +.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
9 +.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
10 +
11 +// Hook for IE8-9
12 +// -------------------------
13 +
14 +:root .@{fa-css-prefix}-rotate-90,
15 +:root .@{fa-css-prefix}-rotate-180,
16 +:root .@{fa-css-prefix}-rotate-270,
17 +:root .@{fa-css-prefix}-flip-horizontal,
18 +:root .@{fa-css-prefix}-flip-vertical {
19 + filter: none;
20 +}
1 +// Screen Readers
2 +// -------------------------
3 +
4 +.sr-only { .sr-only(); }
5 +.sr-only-focusable { .sr-only-focusable(); }
1 +// Stacked Icons
2 +// -------------------------
3 +
4 +.@{fa-css-prefix}-stack {
5 + position: relative;
6 + display: inline-block;
7 + width: 2em;
8 + height: 2em;
9 + line-height: 2em;
10 + vertical-align: middle;
11 +}
12 +.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13 + position: absolute;
14 + left: 0;
15 + width: 100%;
16 + text-align: center;
17 +}
18 +.@{fa-css-prefix}-stack-1x { line-height: inherit; }
19 +.@{fa-css-prefix}-stack-2x { font-size: 2em; }
20 +.@{fa-css-prefix}-inverse { color: @fa-inverse; }
This diff is collapsed. Click to expand it.
1 +// Spinning Icons
2 +// --------------------------
3 +
4 +.#{$fa-css-prefix}-spin {
5 + -webkit-animation: fa-spin 2s infinite linear;
6 + animation: fa-spin 2s infinite linear;
7 +}
8 +
9 +.#{$fa-css-prefix}-pulse {
10 + -webkit-animation: fa-spin 1s infinite steps(8);
11 + animation: fa-spin 1s infinite steps(8);
12 +}
13 +
14 +@-webkit-keyframes fa-spin {
15 + 0% {
16 + -webkit-transform: rotate(0deg);
17 + transform: rotate(0deg);
18 + }
19 + 100% {
20 + -webkit-transform: rotate(359deg);
21 + transform: rotate(359deg);
22 + }
23 +}
24 +
25 +@keyframes fa-spin {
26 + 0% {
27 + -webkit-transform: rotate(0deg);
28 + transform: rotate(0deg);
29 + }
30 + 100% {
31 + -webkit-transform: rotate(359deg);
32 + transform: rotate(359deg);
33 + }
34 +}
1 +// Bordered & Pulled
2 +// -------------------------
3 +
4 +.#{$fa-css-prefix}-border {
5 + padding: .2em .25em .15em;
6 + border: solid .08em $fa-border-color;
7 + border-radius: .1em;
8 +}
9 +
10 +.#{$fa-css-prefix}-pull-left { float: left; }
11 +.#{$fa-css-prefix}-pull-right { float: right; }
12 +
13 +.#{$fa-css-prefix} {
14 + &.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
15 + &.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
16 +}
17 +
18 +/* Deprecated as of 4.4.0 */
19 +.pull-right { float: right; }
20 +.pull-left { float: left; }
21 +
22 +.#{$fa-css-prefix} {
23 + &.pull-left { margin-right: .3em; }
24 + &.pull-right { margin-left: .3em; }
25 +}
1 +// Base Class Definition
2 +// -------------------------
3 +
4 +.#{$fa-css-prefix} {
5 + display: inline-block;
6 + font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 + font-size: inherit; // can't have font-size inherit on line above, so need to override
8 + text-rendering: auto; // optimizelegibility throws things off #1094
9 + -webkit-font-smoothing: antialiased;
10 + -moz-osx-font-smoothing: grayscale;
11 +
12 +}
1 +// Fixed Width Icons
2 +// -------------------------
3 +.#{$fa-css-prefix}-fw {
4 + width: (18em / 14);
5 + text-align: center;
6 +}
This diff is collapsed. Click to expand it.
1 +// Icon Sizes
2 +// -------------------------
3 +
4 +/* makes the font 33% larger relative to the icon container */
5 +.#{$fa-css-prefix}-lg {
6 + font-size: (4em / 3);
7 + line-height: (3em / 4);
8 + vertical-align: -15%;
9 +}
10 +.#{$fa-css-prefix}-2x { font-size: 2em; }
11 +.#{$fa-css-prefix}-3x { font-size: 3em; }
12 +.#{$fa-css-prefix}-4x { font-size: 4em; }
13 +.#{$fa-css-prefix}-5x { font-size: 5em; }
1 +// List Icons
2 +// -------------------------
3 +
4 +.#{$fa-css-prefix}-ul {
5 + padding-left: 0;
6 + margin-left: $fa-li-width;
7 + list-style-type: none;
8 + > li { position: relative; }
9 +}
10 +.#{$fa-css-prefix}-li {
11 + position: absolute;
12 + left: -$fa-li-width;
13 + width: $fa-li-width;
14 + top: (2em / 14);
15 + text-align: center;
16 + &.#{$fa-css-prefix}-lg {
17 + left: -$fa-li-width + (4em / 14);
18 + }
19 +}
1 +// Mixins
2 +// --------------------------
3 +
4 +@mixin fa-icon() {
5 + display: inline-block;
6 + font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 + font-size: inherit; // can't have font-size inherit on line above, so need to override
8 + text-rendering: auto; // optimizelegibility throws things off #1094
9 + -webkit-font-smoothing: antialiased;
10 + -moz-osx-font-smoothing: grayscale;
11 +
12 +}
13 +
14 +@mixin fa-icon-rotate($degrees, $rotation) {
15 + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
16 + -webkit-transform: rotate($degrees);
17 + -ms-transform: rotate($degrees);
18 + transform: rotate($degrees);
19 +}
20 +
21 +@mixin fa-icon-flip($horiz, $vert, $rotation) {
22 + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
23 + -webkit-transform: scale($horiz, $vert);
24 + -ms-transform: scale($horiz, $vert);
25 + transform: scale($horiz, $vert);
26 +}
27 +
28 +
29 +// Only display content to screen readers. A la Bootstrap 4.
30 +//
31 +// See: http://a11yproject.com/posts/how-to-hide-content/
32 +
33 +@mixin sr-only {
34 + position: absolute;
35 + width: 1px;
36 + height: 1px;
37 + padding: 0;
38 + margin: -1px;
39 + overflow: hidden;
40 + clip: rect(0,0,0,0);
41 + border: 0;
42 +}
43 +
44 +// Use in conjunction with .sr-only to only display content when it's focused.
45 +//
46 +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
47 +//
48 +// Credit: HTML5 Boilerplate
49 +
50 +@mixin sr-only-focusable {
51 + &:active,
52 + &:focus {
53 + position: static;
54 + width: auto;
55 + height: auto;
56 + margin: 0;
57 + overflow: visible;
58 + clip: auto;
59 + }
60 +}
1 +/* FONT PATH
2 + * -------------------------- */
3 +
4 +@font-face {
5 + font-family: 'FontAwesome';
6 + src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
7 + src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
8 + url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
9 + url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
10 + url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
11 + url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
12 +// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 + font-weight: normal;
14 + font-style: normal;
15 +}
1 +// Rotated & Flipped Icons
2 +// -------------------------
3 +
4 +.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5 +.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6 +.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7 +
8 +.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9 +.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10 +
11 +// Hook for IE8-9
12 +// -------------------------
13 +
14 +:root .#{$fa-css-prefix}-rotate-90,
15 +:root .#{$fa-css-prefix}-rotate-180,
16 +:root .#{$fa-css-prefix}-rotate-270,
17 +:root .#{$fa-css-prefix}-flip-horizontal,
18 +:root .#{$fa-css-prefix}-flip-vertical {
19 + filter: none;
20 +}
1 +// Screen Readers
2 +// -------------------------
3 +
4 +.sr-only { @include sr-only(); }
5 +.sr-only-focusable { @include sr-only-focusable(); }
1 +// Stacked Icons
2 +// -------------------------
3 +
4 +.#{$fa-css-prefix}-stack {
5 + position: relative;
6 + display: inline-block;
7 + width: 2em;
8 + height: 2em;
9 + line-height: 2em;
10 + vertical-align: middle;
11 +}
12 +.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 + position: absolute;
14 + left: 0;
15 + width: 100%;
16 + text-align: center;
17 +}
18 +.#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 +.#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 +.#{$fa-css-prefix}-inverse { color: $fa-inverse; }
This diff is collapsed. Click to expand it.
1 +/*!
2 + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 + */
5 +
6 +@import "variables";
7 +@import "mixins";
8 +@import "path";
9 +@import "core";
10 +@import "larger";
11 +@import "fixed-width";
12 +@import "list";
13 +@import "bordered-pulled";
14 +@import "animated";
15 +@import "rotated-flipped";
16 +@import "stacked";
17 +@import "icons";
18 +@import "screen-reader";
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
1 +Copyright 2011 The Montserrat Project Authors (https://github.com/JulietaUla/Montserrat)
2 +
3 +This Font Software is licensed under the SIL Open Font License, Version 1.1.
4 +This license is copied below, and is also available with a FAQ at:
5 +http://scripts.sil.org/OFL
6 +
7 +
8 +-----------------------------------------------------------
9 +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10 +-----------------------------------------------------------
11 +
12 +PREAMBLE
13 +The goals of the Open Font License (OFL) are to stimulate worldwide
14 +development of collaborative font projects, to support the font creation
15 +efforts of academic and linguistic communities, and to provide a free and
16 +open framework in which fonts may be shared and improved in partnership
17 +with others.
18 +
19 +The OFL allows the licensed fonts to be used, studied, modified and
20 +redistributed freely as long as they are not sold by themselves. The
21 +fonts, including any derivative works, can be bundled, embedded,
22 +redistributed and/or sold with any software provided that any reserved
23 +names are not used by derivative works. The fonts and derivatives,
24 +however, cannot be released under any other type of license. The
25 +requirement for fonts to remain under this license does not apply
26 +to any document created using the fonts or their derivatives.
27 +
28 +DEFINITIONS
29 +"Font Software" refers to the set of files released by the Copyright
30 +Holder(s) under this license and clearly marked as such. This may
31 +include source files, build scripts and documentation.
32 +
33 +"Reserved Font Name" refers to any names specified as such after the
34 +copyright statement(s).
35 +
36 +"Original Version" refers to the collection of Font Software components as
37 +distributed by the Copyright Holder(s).
38 +
39 +"Modified Version" refers to any derivative made by adding to, deleting,
40 +or substituting -- in part or in whole -- any of the components of the
41 +Original Version, by changing formats or by porting the Font Software to a
42 +new environment.
43 +
44 +"Author" refers to any designer, engineer, programmer, technical
45 +writer or other person who contributed to the Font Software.
46 +
47 +PERMISSION & CONDITIONS
48 +Permission is hereby granted, free of charge, to any person obtaining
49 +a copy of the Font Software, to use, study, copy, merge, embed, modify,
50 +redistribute, and sell modified and unmodified copies of the Font
51 +Software, subject to the following conditions:
52 +
53 +1) Neither the Font Software nor any of its individual components,
54 +in Original or Modified Versions, may be sold by itself.
55 +
56 +2) Original or Modified Versions of the Font Software may be bundled,
57 +redistributed and/or sold with any software, provided that each copy
58 +contains the above copyright notice and this license. These can be
59 +included either as stand-alone text files, human-readable headers or
60 +in the appropriate machine-readable metadata fields within text or
61 +binary files as long as those fields can be easily viewed by the user.
62 +
63 +3) No Modified Version of the Font Software may use the Reserved Font
64 +Name(s) unless explicit written permission is granted by the corresponding
65 +Copyright Holder. This restriction only applies to the primary font name as
66 +presented to the users.
67 +
68 +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69 +Software shall not be used to promote, endorse or advertise any
70 +Modified Version, except to acknowledge the contribution(s) of the
71 +Copyright Holder(s) and the Author(s) or with their explicit written
72 +permission.
73 +
74 +5) The Font Software, modified or unmodified, in part or in whole,
75 +must be distributed entirely under this license, and must not be
76 +distributed under any other license. The requirement for fonts to
77 +remain under this license does not apply to any document created
78 +using the Font Software.
79 +
80 +TERMINATION
81 +This license becomes null and void if any of the above conditions are
82 +not met.
83 +
84 +DISCLAIMER
85 +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86 +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87 +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88 +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89 +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90 +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91 +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92 +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93 +OTHER DEALINGS IN THE FONT SOFTWARE.
No preview for this file type
1 +
2 +
3 +/*//////////////////////////////////////////////////////////////////
4 +[ FONT ]*/
5 +
6 +
7 +@font-face {
8 + font-family: OpenSans-Regular;
9 + src: url('../fonts/OpenSans/OpenSans-Regular.ttf');
10 +}
11 +
12 +
13 +
14 +/*//////////////////////////////////////////////////////////////////
15 +[ RESTYLE TAG ]*/
16 +* {
17 + margin: 0px;
18 + padding: 0px;
19 + box-sizing: border-box;
20 +}
21 +
22 +body, html {
23 + height: 100%;
24 + font-family: sans-serif;
25 +}
26 +
27 +/* ------------------------------------ */
28 +a {
29 + margin: 0px;
30 + transition: all 0.4s;
31 + -webkit-transition: all 0.4s;
32 + -o-transition: all 0.4s;
33 + -moz-transition: all 0.4s;
34 +}
35 +
36 +a:focus {
37 + outline: none !important;
38 +}
39 +
40 +a:hover {
41 + text-decoration: none;
42 +}
43 +
44 +/* ------------------------------------ */
45 +h1,h2,h3,h4,h5,h6 {margin: 0px;}
46 +
47 +p {margin: 0px;}
48 +
49 +ul, li {
50 + margin: 0px;
51 + list-style-type: none;
52 +}
53 +
54 +
55 +/* ------------------------------------ */
56 +input {
57 + display: block;
58 + outline: none;
59 + border: none !important;
60 +}
61 +
62 +textarea {
63 + display: block;
64 + outline: none;
65 +}
66 +
67 +textarea:focus, input:focus {
68 + border-color: transparent !important;
69 +}
70 +
71 +/* ------------------------------------ */
72 +button {
73 + outline: none !important;
74 + border: none;
75 + background: transparent;
76 +}
77 +
78 +button:hover {
79 + cursor: pointer;
80 +}
81 +
82 +iframe {
83 + border: none !important;
84 +}
85 +
86 +
87 +
88 +
89 +/*//////////////////////////////////////////////////////////////////
90 +[ Utiliti ]*/
91 +
92 +
93 +
94 +
95 +
96 +
97 +/*//////////////////////////////////////////////////////////////////
98 +[ Table ]*/
99 +
100 +.limiter {
101 + width: 100%;
102 + margin: 0 auto;
103 +}
104 +
105 +.container-table100 {
106 + width: 100%;
107 + min-height: 100vh;
108 + background: #c850c0;
109 + background: -webkit-linear-gradient(45deg, #4158d0, #c850c0);
110 + background: -o-linear-gradient(45deg, #4158d0, #c850c0);
111 + background: -moz-linear-gradient(45deg, #4158d0, #c850c0);
112 + background: linear-gradient(45deg, #4158d0, #c850c0);
113 +
114 + display: -webkit-box;
115 + display: -webkit-flex;
116 + display: -moz-box;
117 + display: -ms-flexbox;
118 + display: flex;
119 + align-items: center;
120 + justify-content: center;
121 + flex-wrap: wrap;
122 + padding: 33px 30px;
123 +}
124 +
125 +.wrap-table100 {
126 + width: 1170px;
127 +}
128 +
129 +table {
130 + border-spacing: 1;
131 + border-collapse: collapse;
132 + background: white;
133 + border-radius: 10px;
134 + overflow: hidden;
135 + width: 100%;
136 + margin: 0 auto;
137 + position: relative;
138 +}
139 +table * {
140 + position: relative;
141 +}
142 +table td, table th {
143 + padding-left: 8px;
144 +}
145 +table thead tr {
146 + height: 60px;
147 + background: #36304a;
148 +}
149 +table tbody tr {
150 + height: 50px;
151 +}
152 +table tbody tr:last-child {
153 + border: 0;
154 +}
155 +table td, table th {
156 + text-align: left;
157 +}
158 +table td.l, table th.l {
159 + text-align: right;
160 +}
161 +table td.c, table th.c {
162 + text-align: center;
163 +}
164 +table td.r, table th.r {
165 + text-align: center;
166 +}
167 +
168 +
169 +.table100-head th{
170 + font-family: OpenSans-Regular;
171 + font-size: 18px;
172 + color: #fff;
173 + line-height: 1.2;
174 + font-weight: unset;
175 +}
176 +
177 +tbody tr:nth-child(even) {
178 + background-color: #f5f5f5;
179 +}
180 +
181 +tbody tr {
182 + font-family: OpenSans-Regular;
183 + font-size: 15px;
184 + color: #808080;
185 + line-height: 1.2;
186 + font-weight: unset;
187 +}
188 +
189 +tbody tr:hover {
190 + color: #555555;
191 + background-color: #f5f5f5;
192 + cursor: pointer;
193 +}
194 +
195 +.column1 {
196 + width: 260px;
197 + padding-left: 40px;
198 +}
199 +
200 +.column2 {
201 + width: 160px;
202 +}
203 +
204 +.column3 {
205 + width: 245px;
206 +}
207 +
208 +.column4 {
209 + width: 110px;
210 + text-align: right;
211 +}
212 +
213 +.column5 {
214 + width: 170px;
215 + text-align: right;
216 +}
217 +
218 +.column6 {
219 + width: 222px;
220 + text-align: right;
221 + padding-right: 62px;
222 +}
223 +
224 +
225 +@media screen and (max-width: 992px) {
226 + table {
227 + display: block;
228 + }
229 + table > *, table tr, table td, table th {
230 + display: block;
231 + }
232 + table thead {
233 + display: none;
234 + }
235 + table tbody tr {
236 + height: auto;
237 + padding: 37px 0;
238 + }
239 + table tbody tr td {
240 + padding-left: 40% !important;
241 + margin-bottom: 24px;
242 + }
243 + table tbody tr td:last-child {
244 + margin-bottom: 0;
245 + }
246 + table tbody tr td:before {
247 + font-family: OpenSans-Regular;
248 + font-size: 14px;
249 + color: #999999;
250 + line-height: 1.2;
251 + font-weight: unset;
252 + position: absolute;
253 + width: 40%;
254 + left: 30px;
255 + top: 0;
256 + }
257 + table tbody tr td:nth-child(1):before {
258 + content: "Date";
259 + }
260 + table tbody tr td:nth-child(2):before {
261 + content: "Order ID";
262 + }
263 + table tbody tr td:nth-child(3):before {
264 + content: "Name";
265 + }
266 + table tbody tr td:nth-child(4):before {
267 + content: "Price";
268 + }
269 + table tbody tr td:nth-child(5):before {
270 + content: "Quantity";
271 + }
272 + table tbody tr td:nth-child(6):before {
273 + content: "Total";
274 + }
275 +
276 + .column4,
277 + .column5,
278 + .column6 {
279 + text-align: left;
280 + }
281 +
282 + .column4,
283 + .column5,
284 + .column6,
285 + .column1,
286 + .column2,
287 + .column3 {
288 + width: 100%;
289 + }
290 +
291 + tbody tr {
292 + font-size: 14px;
293 + }
294 +}
295 +
296 +@media (max-width: 576px) {
297 + .container-table100 {
298 + padding-left: 15px;
299 + padding-right: 15px;
300 + }
301 +}
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
1 +html {
2 + box-sizing: border-box;
3 + font-family: sans-serif;
4 + line-height: 1.15;
5 + -webkit-text-size-adjust: 100%;
6 + -ms-text-size-adjust: 100%;
7 + -ms-overflow-style: scrollbar;
8 + -webkit-tap-highlight-color: transparent;
9 +}
10 +
11 +*,
12 +*::before,
13 +*::after {
14 + box-sizing: inherit;
15 +}
16 +
17 +@-ms-viewport {
18 + width: device-width;
19 +}
20 +
21 +article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
22 + display: block;
23 +}
24 +
25 +body {
26 + margin: 0;
27 + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
28 + font-size: 1rem;
29 + font-weight: normal;
30 + line-height: 1.5;
31 + color: #212529;
32 + background-color: #fff;
33 +}
34 +
35 +[tabindex="-1"]:focus {
36 + outline: none !important;
37 +}
38 +
39 +hr {
40 + box-sizing: content-box;
41 + height: 0;
42 + overflow: visible;
43 +}
44 +
45 +h1, h2, h3, h4, h5, h6 {
46 + margin-top: 0;
47 + margin-bottom: .5rem;
48 +}
49 +
50 +p {
51 + margin-top: 0;
52 + margin-bottom: 1rem;
53 +}
54 +
55 +abbr[title],
56 +abbr[data-original-title] {
57 + text-decoration: underline;
58 + -webkit-text-decoration: underline dotted;
59 + text-decoration: underline dotted;
60 + cursor: help;
61 + border-bottom: 0;
62 +}
63 +
64 +address {
65 + margin-bottom: 1rem;
66 + font-style: normal;
67 + line-height: inherit;
68 +}
69 +
70 +ol,
71 +ul,
72 +dl {
73 + margin-top: 0;
74 + margin-bottom: 1rem;
75 +}
76 +
77 +ol ol,
78 +ul ul,
79 +ol ul,
80 +ul ol {
81 + margin-bottom: 0;
82 +}
83 +
84 +dt {
85 + font-weight: bold;
86 +}
87 +
88 +dd {
89 + margin-bottom: .5rem;
90 + margin-left: 0;
91 +}
92 +
93 +blockquote {
94 + margin: 0 0 1rem;
95 +}
96 +
97 +dfn {
98 + font-style: italic;
99 +}
100 +
101 +b,
102 +strong {
103 + font-weight: bolder;
104 +}
105 +
106 +small {
107 + font-size: 80%;
108 +}
109 +
110 +sub,
111 +sup {
112 + position: relative;
113 + font-size: 75%;
114 + line-height: 0;
115 + vertical-align: baseline;
116 +}
117 +
118 +sub {
119 + bottom: -.25em;
120 +}
121 +
122 +sup {
123 + top: -.5em;
124 +}
125 +
126 +a {
127 + color: #007bff;
128 + text-decoration: none;
129 + background-color: transparent;
130 + -webkit-text-decoration-skip: objects;
131 +}
132 +
133 +a:hover {
134 + color: #0056b3;
135 + text-decoration: underline;
136 +}
137 +
138 +a:not([href]):not([tabindex]) {
139 + color: inherit;
140 + text-decoration: none;
141 +}
142 +
143 +a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
144 + color: inherit;
145 + text-decoration: none;
146 +}
147 +
148 +a:not([href]):not([tabindex]):focus {
149 + outline: 0;
150 +}
151 +
152 +pre,
153 +code,
154 +kbd,
155 +samp {
156 + font-family: monospace, monospace;
157 + font-size: 1em;
158 +}
159 +
160 +pre {
161 + margin-top: 0;
162 + margin-bottom: 1rem;
163 + overflow: auto;
164 +}
165 +
166 +figure {
167 + margin: 0 0 1rem;
168 +}
169 +
170 +img {
171 + vertical-align: middle;
172 + border-style: none;
173 +}
174 +
175 +svg:not(:root) {
176 + overflow: hidden;
177 +}
178 +
179 +a,
180 +area,
181 +button,
182 +[role="button"],
183 +input,
184 +label,
185 +select,
186 +summary,
187 +textarea {
188 + -ms-touch-action: manipulation;
189 + touch-action: manipulation;
190 +}
191 +
192 +table {
193 + border-collapse: collapse;
194 +}
195 +
196 +caption {
197 + padding-top: 0.75rem;
198 + padding-bottom: 0.75rem;
199 + color: #868e96;
200 + text-align: left;
201 + caption-side: bottom;
202 +}
203 +
204 +th {
205 + text-align: left;
206 +}
207 +
208 +label {
209 + display: inline-block;
210 + margin-bottom: .5rem;
211 +}
212 +
213 +button:focus {
214 + outline: 1px dotted;
215 + outline: 5px auto -webkit-focus-ring-color;
216 +}
217 +
218 +input,
219 +button,
220 +select,
221 +optgroup,
222 +textarea {
223 + margin: 0;
224 + font-family: inherit;
225 + font-size: inherit;
226 + line-height: inherit;
227 +}
228 +
229 +button,
230 +input {
231 + overflow: visible;
232 +}
233 +
234 +button,
235 +select {
236 + text-transform: none;
237 +}
238 +
239 +button,
240 +html [type="button"],
241 +[type="reset"],
242 +[type="submit"] {
243 + -webkit-appearance: button;
244 +}
245 +
246 +button::-moz-focus-inner,
247 +[type="button"]::-moz-focus-inner,
248 +[type="reset"]::-moz-focus-inner,
249 +[type="submit"]::-moz-focus-inner {
250 + padding: 0;
251 + border-style: none;
252 +}
253 +
254 +input[type="radio"],
255 +input[type="checkbox"] {
256 + box-sizing: border-box;
257 + padding: 0;
258 +}
259 +
260 +input[type="date"],
261 +input[type="time"],
262 +input[type="datetime-local"],
263 +input[type="month"] {
264 + -webkit-appearance: listbox;
265 +}
266 +
267 +textarea {
268 + overflow: auto;
269 + resize: vertical;
270 +}
271 +
272 +fieldset {
273 + min-width: 0;
274 + padding: 0;
275 + margin: 0;
276 + border: 0;
277 +}
278 +
279 +legend {
280 + display: block;
281 + width: 100%;
282 + max-width: 100%;
283 + padding: 0;
284 + margin-bottom: .5rem;
285 + font-size: 1.5rem;
286 + line-height: inherit;
287 + color: inherit;
288 + white-space: normal;
289 +}
290 +
291 +progress {
292 + vertical-align: baseline;
293 +}
294 +
295 +[type="number"]::-webkit-inner-spin-button,
296 +[type="number"]::-webkit-outer-spin-button {
297 + height: auto;
298 +}
299 +
300 +[type="search"] {
301 + outline-offset: -2px;
302 + -webkit-appearance: none;
303 +}
304 +
305 +[type="search"]::-webkit-search-cancel-button,
306 +[type="search"]::-webkit-search-decoration {
307 + -webkit-appearance: none;
308 +}
309 +
310 +::-webkit-file-upload-button {
311 + font: inherit;
312 + -webkit-appearance: button;
313 +}
314 +
315 +output {
316 + display: inline-block;
317 +}
318 +
319 +summary {
320 + display: list-item;
321 +}
322 +
323 +template {
324 + display: none;
325 +}
326 +
327 +[hidden] {
328 + display: none !important;
329 +}
330 +/*# sourceMappingURL=bootstrap-reboot.css.map */
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
1 +html{box-sizing:border-box;font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}*,::after,::before{box-sizing:inherit}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}[role=button],a,area,button,input,label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#868e96;text-align:left;caption-side:bottom}th{text-align:left}label{display:inline-block;margin-bottom:.5rem}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important}
2 +/*# sourceMappingURL=bootstrap-reboot.min.css.map */
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.