-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (39 loc) · 737 Bytes
/
style.css
File metadata and controls
45 lines (39 loc) · 737 Bytes
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
body{
font-family: 'Courier New', Courier, monospace;
}
.main{
text-align: center;
margin-top: 20%;
}
#value{
font-weight: bold;
color: white;
padding: 10px;
border-radius: 5px;
}
.value-main{
text-align: center;
justify-content: center;
}
.btn{
border: none;
background-color: black;
color: white;
padding: 10px;
border-radius: 5px;
font-weight: bold;
font-family: 'Courier New', Courier, monospace;
}
#input{
font-weight: bold;
font-family: 'Courier New', Courier, monospace;
padding: 10px;
border: none;
background-color: black;
border-radius: 5px;
color: white;
width: 237px;
}
#input::placeholder{
color: rgb(231, 226, 226);
}