-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (56 loc) · 1.05 KB
/
style.css
File metadata and controls
61 lines (56 loc) · 1.05 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
body {
background-color: #053009;
text-align: center;
color: white;
font-family: 'Courier New', Courier, monospace;
padding: 15%;
}
form{
text-align: justify;
}
#percent {
font-family: Arial, Helvetica, sans-serif;
}
input[type="text"] {
color: black;
border: none;
border-bottom: 2px solid black;
outline: none;
height: 2em;
font-size:1em;
margin: 10px;
}
label {
font-size: 2em;
}
input[type="submit"] {
background-color: blue;
color: white;
font-size: 2em;
border: none;
}
button {
font-size: 2em;
padding: 9px;
border: 2px solid white;
}
footer {
text-align: center;
padding: 20px;
background-color: rgba(158, 150, 150, 0.171);
color: rgba(247, 241, 241, 0.719);
position: relative;
margin-top: 23vh;
bottom: -15px;
width: 100%;
font-style: italic;
font-family: Arial, Helvetica, sans-serif;
}
@media only screen and (max-width: 550px) {
button {
font-size: 1em;
}
label {
font-size: 20px;
}
}