-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
124 lines (101 loc) · 1.79 KB
/
style.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
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
body {
font-family: sans-serif;
font-size: 13px;
min-height: 100vh;
background: rgb(7, 16, 84);
background: linear-gradient(135deg, rgba(7, 16, 84, 1) 0%, rgba(53, 94, 142, 1) 100%);
background-repeat: no-repeat;
}
tr {
margin: 10px;
}
div#main {
overflow:hidden;
height:auto;
padding: 30px;
margin: 50px;
background-color: whitesmoke;
border-radius: 5px;
box-shadow: 5px 10px 10px black;
}
div.fullWidth {
float: left;
width: 100%;
}
div.box {
float: left;
display: inline-block;
width: 320px;
padding: 15px;
margin: 15px;
background-color: white;
border-radius: 5px;
}
div.operatorBox {
float: left;
display: inline-block;
padding: 15px;
margin: 15px;
background-color: white;
border-radius: 5px;
}
div.flexibleBox {
display: inline-block;
float: left;
padding: 15px;
margin: 15px;
background-color: white;
border-radius: 5px;
}
div.flexibleBox {
display: inline-block;
float: left;
padding: 15px;
margin: 15px;
background-color: white;
border-radius: 5px;
}
td {
padding: 3px;
}
h1 {
font-size: larger;
align-content: center;
}
h2 {
font-size: small;
color: darkgray;
float: left;
font-style: italic;
font-weight: lighter;
}
input.textBox {
width: 100%;
background-color: whitesmoke;
border: white;
border-radius: 5px;
padding: 5px;
}
.IOField {
width: 95%;
padding-right: 10px
}
.radioButton {
margin: 3px;
}
@media screen and (max-width: 768px) {
body{
background: whitesmoke;
}
div.box{
width: 88%;
}
div.flexibleBox {
width: 88%
}
div#main {
margin: 0;
padding: 15px;
box-shadow: none;
}
}