-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
78 lines (68 loc) · 1.33 KB
/
styles.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
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
* {
color:white;
font-family: arial;
}
body {
/*background-color:black;*/
background: linear-gradient(#222222, #000000);
}
div.bgimg {
position: absolute;
top: calc(50px + 50vh - min(25vw, calc(25vh - 25px)));
left: calc(50vw - min(25vw, calc(25vh - 25px)));
opacity: 0.20;
width: min(50vw,calc(50vh - 50px));
}
.header {
position: absolute;
top: 0;
left: 0;
text-align: center;
font-family: arial;
/*background-color: #f4511e;*/
background: linear-gradient(#f8713e, #c8310e);
color: white;
width: 100vw;
height: 100px;
line-height: 50px;
box-shadow: 0px 3px 20px #c4310e;
}
div.container {
position: absolute;
top: calc(100px + 2vw);
left: 2vw;
height: calc(100vh - 2vw - 100px);
width: 96vw;
/*-webkit-background-size:cover;
-moz-background-size:cover;
background-size:cover;*/
}
div.container:not(#main) {
visibility: hidden;
}
table {
text-align: center;
position: relative;
left: 50%;
transform: translateX(-50%);
}
/* TODO: better input color, better textbox color */
input {
color: black;
}
input[type=button] {
background-color: #f4511e;
border-radius: 5px;
border-color: #c8310e;
color: #fff;
padding: 4px 8px;
margin: 0px 2px;
cursor: pointer;
}
input[type=text], input[type=number] {
border: none;
border-bottom: 2px solid #ffa705;
background-color: #7f7f7f;
color: white;
padding: 5px;
}