-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvue_instance.css
50 lines (47 loc) · 1011 Bytes
/
vue_instance.css
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
/*
* vue_instance.css
* Copyright (C) 2021 damian
*
* Distributed under terms of the MIT license.
*/
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
margin-top: 60px;
}
.div-table {
display: table;
width: auto;
background-color: #eee;
border: 1px solid #666666;
border-spacing: 5px; /* cellspacing:poor IE support for this */
}
.div-table-row {
display: table-row;
width: auto;
clear: both;
}
.div-table-col {
float: left; /* fix for buggy browsers */
display: table-column;
width: 350px;
background-color: #ccc;
}
.div-table-col-short {
width: 30px;
}
.div-table-col-header {
text-align: center;
background-color: #aaa;
font-weight: bold;
}
.div-table-col-header {
text-align: center;
background-color: #aaa;
font-weight: bold;
}
.error-box {
border: 5px solid red;
}