-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (45 loc) · 798 Bytes
/
style.css
File metadata and controls
47 lines (45 loc) · 798 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
46
47
body{
font-family: Arial, Helvetica, sans-serif;
background-color: hsl(0, 0%, 92%);
}
h1{
color: rgb(28, 139, 183);
}
form{
background-color: hsl(0, 0%, 100%);
text-align: center;
max-width: 350px;
margin: auto;
padding: 25px;
border-radius: 15px;
box-shadow: 5px 5px 15px hsl(0, 0%, 0.3%);
}
#textBox{
width: 50%;
text-align: center;
font-size: 2em;
border: 2px solid hsl(0, 0%, 0%, 0.8%);
border-radius: 4px;
margin-bottom: 15px;
}
label{
font-size: 1.5rem;
font-weight: bold;
}
button {
margin-top: 15px;
background-color: red;
font-size: 1.5rem;
border: none;
padding: 10px 15px;
border-radius: 5px;
color: white;
cursor: pointer;
&:hover {
background-color: rgb(114, 13, 13);
}
}
#result{
font-size: 1.5em;
font-weight: bold;
}