bulma and fontawesome instaled
[josuexyz/.git] / public / vendors / bulma / sass / base / generic.sass
1 $body-background-color: $scheme-main !default
2 $body-size: 16px !default
3 $body-min-width: 300px !default
4 $body-rendering: optimizeLegibility !default
5 $body-family: $family-primary !default
6 $body-overflow-x: hidden !default
7 $body-overflow-y: scroll !default
8
9 $body-color: $text !default
10 $body-font-size: 1em !default
11 $body-weight: $weight-normal !default
12 $body-line-height: 1.5 !default
13
14 $code-family: $family-code !default
15 $code-padding: 0.25em 0.5em 0.25em !default
16 $code-weight: normal !default
17 $code-size: 0.875em !default
18
19 $small-font-size: 0.875em !default
20
21 $hr-background-color: $background !default
22 $hr-height: 2px !default
23 $hr-margin: 1.5rem 0 !default
24
25 $strong-color: $text-strong !default
26 $strong-weight: $weight-bold !default
27
28 $pre-font-size: 0.875em !default
29 $pre-padding: 1.25rem 1.5rem !default
30 $pre-code-font-size: 1em !default
31
32 html
33   background-color: $body-background-color
34   font-size: $body-size
35   -moz-osx-font-smoothing: grayscale
36   -webkit-font-smoothing: antialiased
37   min-width: $body-min-width
38   overflow-x: $body-overflow-x
39   overflow-y: $body-overflow-y
40   text-rendering: $body-rendering
41   text-size-adjust: 100%
42
43 article,
44 aside,
45 figure,
46 footer,
47 header,
48 hgroup,
49 section
50   display: block
51
52 body,
53 button,
54 input,
55 select,
56 textarea
57   font-family: $body-family
58
59 code,
60 pre
61   -moz-osx-font-smoothing: auto
62   -webkit-font-smoothing: auto
63   font-family: $code-family
64
65 body
66   color: $body-color
67   font-size: $body-font-size
68   font-weight: $body-weight
69   line-height: $body-line-height
70
71 // Inline
72
73 a
74   color: $link
75   cursor: pointer
76   text-decoration: none
77   strong
78     color: currentColor
79   &:hover
80     color: $link-hover
81
82 code
83   background-color: $code-background
84   color: $code
85   font-size: $code-size
86   font-weight: $code-weight
87   padding: $code-padding
88
89 hr
90   background-color: $hr-background-color
91   border: none
92   display: block
93   height: $hr-height
94   margin: $hr-margin
95
96 img
97   height: auto
98   max-width: 100%
99
100 input[type="checkbox"],
101 input[type="radio"]
102   vertical-align: baseline
103
104 small
105   font-size: $small-font-size
106
107 span
108   font-style: inherit
109   font-weight: inherit
110
111 strong
112   color: $strong-color
113   font-weight: $strong-weight
114
115 // Block
116
117 fieldset
118   border: none
119
120 pre
121   +overflow-touch
122   background-color: $pre-background
123   color: $pre
124   font-size: $pre-font-size
125   overflow-x: auto
126   padding: $pre-padding
127   white-space: pre
128   word-wrap: normal
129   code
130     background-color: transparent
131     color: currentColor
132     font-size: $pre-code-font-size
133     padding: 0
134
135 table
136   td,
137   th
138     vertical-align: top
139     &:not([align])
140       text-align: left
141   th
142     color: $text-strong