-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (96 loc) · 1.53 KB
/
style.css
File metadata and controls
114 lines (96 loc) · 1.53 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
p {
font-family: Helvetica, Arial, sans-serif;
font-size: 10pt;
}
a {
font-family: Helvetica, Arial, sans-serif;
font-size: 10pt;
color: black;
}
label {
font-family: Helvetica, Arial, sans-serif;
font-size: 10pt;
margin-left: 10px;
}
body {
background: url('https://cdn.jsdelivr.net/gh/kgolid/sonant@1574a62/bg.jpeg') no-repeat
center center fixed;
background-size: cover;
}
.card {
text-align: left;
padding: 20px;
margin: 50px 10px;
background: #f6f6f0;
display: inline-block;
min-width: 700px;
}
.header {
height: 150px;
border: 1px solid black;
}
.header_title {
display: inline-block;
width: 200px;
height: 100%;
padding: 50px 0px;
border-right: 1px solid black;
text-align: center;
}
.header_control {
display: inline-block;
text-align: center;
width: calc(100% - 205px);
}
.content,
.dashboard,
.legend,
.footer {
border: 1px solid black;
border-top: none;
padding: 25px;
}
.dashboard p {
margin-bottom: 15px;
}
.dashboard_sub {
text-align: left;
display: inline-block;
width: 300px;
vertical-align: top;
}
.legend {
padding-top: 35px;
}
.legend p {
margin-bottom: 10px;
}
.legend p strong {
display: inline-block;
width: 160px;
}
.footer {
text-align: center;
}
#board {
width: 644px;
height: 300px;
border: 1px solid black;
}
button,
select {
width: 90px;
height: 30px;
border: none;
border: 1px solid #000;
border-radius: 0;
background-color: #f6f6f0;
}
select {
width: 50px;
}