-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
77 lines (65 loc) · 1.13 KB
/
styles.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
@media (max-width: 600px) {
p {
font-size: small;
}
h1 {
font-size: 180%;
}
}
@media (min-width: 600px) {
p {
font-size: medium;
}
h1 {
font-size: 230%;
}
}
h1{
font-family: 'Source Code Pro', monospace;
font-weight: bold;
color: rgb(6, 38, 6);
text-align: center;
margin-bottom: 15px;
}
p{
font-family: 'Source Code Pro', monospace;
color: rgb(6, 38, 6);
width: 50%;
margin: 15px auto 15px auto;
}
body{
background-color: rgb(203, 237, 203);
}
div{
text-align: center;
}
img{
border-radius: 15px;
width: 52vw;
}
input{
font-family: 'Source Code Pro', monospace;
width: 30%;
height: 18px;
margin: 20px 3px 0px 3px;
padding: 10px;
border-radius: 5px;
border: none;
font-size: 10pt;
background-color: rgb(234, 248, 239);
}
button{
font-family: 'Source Code Pro', monospace;
height: 38px;
border-radius: 5px;
border: none;
padding: 0px 20px 0px 20px;
background-color: rgb(6, 38, 6);
color: rgb(203, 237, 203);
}
#result{
font-weight: bold;
}
#val{
width: 12%;
}