-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (46 loc) · 955 Bytes
/
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
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #FEC919;
color: #003082;
padding: 12px 20px;
margin: 8px 0;
}
p {
margin-bottom: 0;
}
h1 {
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 20px;
font-weight: bold;
}
input[type=text] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
background-color: #003082;
color: #FFFEF8;
display: inline-block;
border: 1px solid;
border-color: #FEC919;
box-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 25px;
font-weight: bold;
}
input[type=text]:focus {
border-color: #13313B;
}
.output {
width: 100%;
height: 200px;
margin: 8px 0;
display: inline-block;
box-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 25px;
font-weight: bold;
}
.missing {
color: #C9100A;
}