-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.scss
88 lines (69 loc) · 1.54 KB
/
style.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
83
84
85
86
87
88
// google-api-example> sass style.scss web/style.css
// google-api-example> sass style.scss web/style.css --style compressed --sourcemap=none
@import './vendor/twbs/bootstrap/scss/_variables.scss'; // NB, must be first file
@import './vendor/twbs/bootstrap/scss/_mixins.scss';
@import './vendor/twbs/bootstrap/scss/_forms.scss';
@import './vendor/twbs/bootstrap/scss/_buttons.scss';
@import './vendor/twbs/bootstrap/scss/_grid.scss';
.text-input{
@extend .form-control;
width:100px;
display: inline;
}
.colored-button {
@extend .btn;
@extend .btn-sm;
}
.blue-button {
@extend .colored-button;
@extend .btn-primary;
}
.green-button {
@extend .colored-button;
@extend .btn-success;
}
.red-button {
@extend .colored-button;
@extend .btn-danger;
}
section {
@include make-row();
}
.container {
max-width: 60em;
@include make-container();
}
.row {
@include make-row();
}
.content-main {
@include make-col-ready();
@media (max-width: 32em) {
@include make-col(3);
}
@media (min-width: 32.1em) {
@include make-col(3);
}
text-align: center;
font-size: 1.75rem;
}
.content-secondary {
@include make-col-ready();
@media (max-width: 32em) {
@include make-col(3);
}
@media (min-width: 32.1em) {
@include make-col(3);
}
overflow: hidden;
border: 1px solid rgba(86, 61, 124, .2);
}
[class*="column-1"] {
background-color: rgba(86, 61, 124, .2);
}
[class*="column-2"] {
background-color: rgba(124, 61, 86, .2);
}
[class*="column-3"] {
background-color: rgba(124, 86, 61, .2);
}