-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoadTest.css
97 lines (95 loc) · 1.31 KB
/
RoadTest.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
/* if having trouble getting things to fit, choose a different default font */
body
{
background-color:aqua;
color:deeppink;
font-size:medium;
font-family:"Arial", "serif";
}
button {
margin-bottom:.75em;
height:3em;
width:5em;
display:block;
}
span
{
font-style:bold;
margin-left:1em;
color:black;
background-color:red;
}
input[type=text]
{
font-size:1em;
}
input[type=number]
{
width: 2.5em;
}
input[type=time], [type=date]
{
font-size:1.2em;
}
#saveImage
{
opacity :0.3;
}
.datapair
{
margin-top:1.5em;
margin-bottom:1.5em;
}
#topParentDiv{
text-align:center;
}
.topdiv
{
border:0.2em solid black;
display:inline-block;
background-color:lightpink;
width:60%;
margin:auto;
text-align:center;
}
.bottomdiv
{
background-color:greenyellow;
border:0.2em solid black;
margin-top:3em;
padding:1em;
text-align:center;
}
#buttonDiv {
padding:0 7em;
margin-top: 5em;
}
#buttonDiv button {
width:8em;
margin-bottom: 4em;
background-color: lightblue;
}
.formLabel{
display:inline-block;
width:200px;
}
.flexcontainer
{
display:flex;
flex-direction:row;
flex-wrap:wrap;
padding-top:0.3em;
margin-left:2em;
margin-right:2em;
background-color:navy;
}
.flexitem
{
background-color:skyblue;
border:0.1em solid black;
margin-bottom:2em;
flex:1;
}
.visible{
visibility: visible;
}