-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (44 loc) · 901 Bytes
/
style.css
File metadata and controls
52 lines (44 loc) · 901 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
48
49
50
51
52
body{
font-family: Arial, sans-serif;
background-color: hsl(0, 0%, 95%);
}
h1{
color: hsl(223, 100%, 64%);
}
form{
background-color: hsl(0, 0%, 100%);
text-align: center;
max-width: 350px;
margin: auto;
padding: 25px;
border-radius: 10px;
box-shadow: 5px 5px 15px hsla(0, 0%, 0%, 0.3);
}
#textBox{
width: 50%;
text-align: center;
font-size: 2em;
border: 2px solid hsla(0, 0%, 0%, 0.8);
border-radius: 4px;
margin-bottom: 15px;
}
label{
font-size: 1.1em;
font-weight: bold;
}
button{
margin-top: 15px;
color: white;
background-color: hsl(0, 100%, 60%);
font-size: 1.1em;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
}
button:hover{
background-color: hsl(0, 100%, 50%);
}
#result{
font-size: 1em;
font-weight: bold;
}