-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path@kochbuch.scss
133 lines (132 loc) · 2.3 KB
/
@kochbuch.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
//@import '@colors';
@import "@cookie";
//.grid-container {
// height:100vh;
// display: grid;
// grid-template-rows: 100px 1fr 1fr 1fr auto;
// grid-template-columns: 100%;
// grid-template-areas:
// "header"
// "userdata"
// "news"
// "content"
// "footer"
//;
//}
//
//@media screen and (min-width: 44.001em) {
// .grid-container {
// display: grid;
// grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
// grid-template-rows: 100px 1fr 1fr auto;
// gap: 0 0;
// grid-template-areas:
// "header header header header header"
// "content content content content userdata"
// "content content content content news"
// "content content content content footer";
// }
//}
//
//.footer { grid-area: footer;
// background: whitesmoke;
// margin: 1px;
//}
//
//.header { grid-area: header;
// background: whitesmoke;
// margin: 1px;
//}
//
//.content { grid-area: content;
// background: whitesmoke;
// margin: 1px;
//}
//
//.userdata { grid-area: userdata;
// background: whitesmoke;
// margin: 1px;
// min-width: 300px;
//}
//
//.news { grid-area: news;
// background: whitesmoke;
// margin: 1px;
//}
//
//
//body, html {
// font-family: "proxima nova", sans-serif;
// font-weight: 400;
// line-height: 1.3em;
// color: $color-black;
// font-size: 15px;
// text-rendering: geometricPrecision;
// -webkit-backface-visibility: hidden;
//}
//
//.auth {
// //min-height: 100vh;
//}
//
//.auth-form {
// padding: 15px;
//
// div.frm__control {
// margin: 15px;
// border: 0;
// }
//
// p.frm__control {
// padding-bottom: 15px;
// border: 0;
// }
//
// p.frm__last-control {
// margin-bottom: 0;
// border: 0;
// }
//
// input.frm__control {
// margin-bottom: 5px;
// margin-left: -15px;
// padding: 15px;
// border:1px solid #ccc!important;
// border-radius: 5px;
// width: 100%;
// }
//
//}
//
//div.alert {
// color: $color-red-dark;
// text-align: left;
//}
//
//div.info {
// color: $color-green-dark;
// text-align: left;
//}
//
//button {
// padding: 15px;
// border-radius: 5px;
// border: 0;
//}
//
//
//.bg--blue {
// background-color: $color-blue-dark;
// color: white;
// width: 100%;
//}
//
//.bg--red {
// background: $color-red-dark;
// color: white;
//}
//
//.footer__center {
// font-size: 10px;
// text-align: center;
//}