-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrasa.scss
82 lines (71 loc) · 1.48 KB
/
rasa.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
Jatsby Rasa v1.0
Released January 29, 2014
under the MIT License
Copyright 2016 Jatsby
https://jatsby.com/
*/
// Reset
* {
padding:0;
margin:0 auto;
border-radius: 0;
border: 0;
background-color: transparent;
position: relative;
-webkit-font-smoothing:antialiased;
-webkit-text-size-adjust: 100%;
text-rendering: geometricPrecision;
text-decoration: none;
color:inherit;
line-height: normal;
/* Responsive Transition Effects */
-webkit-transition-duration:0.5s;
-webkit-transform: rotate3d(0,0,0);
-moz-transition-duration: 0.5s;
-moz-transform: rotate3d(0,0,0);
-webkit-appearance: none;
}
textarea:focus, input:focus{
outline: 0;
}
::selection, ::-moz-selection {
background: #eeeeee;
}
html {
background-color: #3A3A3A;
}
// Global Classes
.disabled {
cursor: not-allowed !important;
}
.flexbox {
/* align */
-webkit-align-items: center;
align-items: center;
/* align content */
-webkit-align-content: flex-end;
align-content: flex-end;
/* display */
display: -webkit-flex;
display: flex;
/* flex direction */
-webkit-flex-direction: row;
flex-direction: row;
/* flex flow */
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
/* flex-wrap */
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
/* justify */
-webkit-justify-content: center;
justify-content: center;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}