-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcovidProjectCSS.css
104 lines (87 loc) · 1.88 KB
/
covidProjectCSS.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
body {
font-family: Arial, Helvetica, sans-serif;
background-image: url("background.png");
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}
/* form {border: 3px solid orange;;} temporarily removed the border */
h2 {
font-size: 20px;
margin-top: 0px;
text-align: center;
}
} /* This } looks like an error but when I remove it things get weird */
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 2px solid #ccc;
box-sizing: border-box;
}
.inputWindow {
border-top: 16px;
padding: 5px;
text-align: center;
}
button {
background-color: orange;
color: black;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
button:hover {
opacity: 0.8;
}
.continuebtn {
width: 25%;
background-color: #f44336;
position: relative;
left: 38%;
}
.checkImage {
height: 20px;
width: 20px;
}
.crossImage {
height: 20px;
width: 20px;
}
table {
width: 90%;
position: relative;
margin-left: auto;
margin-right: auto;
border: 5px solid black;
text-align: center;
background-color: white;
}
/* .cancelbtn { this block does not appear to be used anywhere
width: auto;
padding: 10px 18px;
background-color: #f44336;
} */
.container {
padding: 16px;
padding-top: 100px;
vertical-align: middle;
position: relative;
}
span.psw {
float: right;
padding-top: 16px;
}
/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 200px) {
span.psw {
display: block;
float: none;
}
.cancelbtn {
width: 100%;
}
}