source: resources/assets/sass/components/typography.scss@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 1.5 KB
Line 
1ul {
2 &:not(.list-unstyled) {
3 margin: 0;
4 padding: 0;
5
6 li {
7 list-style-type: none;
8
9 a {
10 .icon {
11 color: darken(white, 18%);
12 font-size: $default-font-size;
13 vertical-align: middle;
14 }
15
16 &:hover, &:focus {
17 text-decoration: underline;
18 }
19 }
20 }
21 }
22
23 li {
24 a {
25 &:hover, &:focus {
26 text-decoration: none !important;
27 }
28 }
29 }
30
31 &.list-unstyled {
32 li {
33 margin-bottom: 10px;
34
35 ul {
36 margin-left: 30px !important;
37 margin-top: 10px !important;
38 margin-bottom: 10px !important;
39
40 li {
41 list-style-type: disc !important;
42 }
43 }
44 }
45 }
46
47 &.links {
48 a {
49 display: block;
50 padding: 3px 5px;
51 color: lighten(black, 18%);
52
53 &.active {
54 color: $color-primary;
55 font-weight: 500;
56 }
57 }
58 }
59}
60
61.list-group.list-group-sm {
62 .list-group-item {
63 padding: .40rem 1rem;
64 }
65}
66
67.text-uppercase {
68 letter-spacing: .5px;
69}
70
71.bg-none {
72 background-color: inherit !important;
73}
74
75$heading-min-font-size: 13px;
76
77h1 {
78 font-size: $default-font-size + 15
79}
80
81h2 {
82 font-size: $default-font-size + 12
83}
84
85h3 {
86 font-size: $default-font-size + 9
87}
88
89h4 {
90 font-size: $default-font-size + 6
91}
92
93h5 {
94 font-size: $default-font-size + 3
95}
96
97h6 {
98 font-size: $default-font-size
99}
100
101ul.list-inline {
102 li {
103 margin-bottom: .5rem;
104 }
105}
106
107hr {
108 border-color: $border-style-color
109}
110
111.right-0 {
112 right: 0;
113}
114
115.left-0 {
116 left: 0
117}
118
119.top-0 {
120 top: 0;
121}
122
123.bottom-0 {
124 bottom: 0;
125}
126
127.cursor-pointer {
128 cursor: pointer
129}
130
131p {
132 line-height: 1.5rem;
133}
Note: See TracBrowser for help on using the repository browser.