-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
96 lines (84 loc) · 1.63 KB
/
main.css
File metadata and controls
96 lines (84 loc) · 1.63 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
html{height: 100%;}
body{
font-family: sans-serif;
background-color: hsl(180, 100%, 97%);
min-height: 98%;
display: flex;
flex-direction: column;
}
h1{
color: rgb(167, 3, 189);
}
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%, 30%, 0.719);
border-radius: 4px;
margin-bottom: 15px;
}
input[type="radio"]{
vertical-align: 3px;
transform: scale(1.3);
}
label{
margin: 10px 0 10px 0;
font-size: 1.5em;
font-weight: 400;
}
#hbr{
margin: 0;
height: 8px;
}
button{
margin: 15px 0 0 0;
font-size: 1.5em;
color: white;
background-color: hsl(185, 61%, 55%);
border: none;
border-radius: 5px;
padding: 10px 15px;
cursor: pointer;
}
button:hover{
background-color: hsl(185, 61%, 45%);
}
#output{
max-width: 200px;
margin: auto;
background-color: hsla(288, 100%, 94%, 0.907);
border-radius: 8px;
}
#results{
padding: 15px;
font-size: 2em;
font-weight: bold;
}
#reaction{
margin-top: -50px;
padding: 15px;
font-size: 3em;
}
footer{
margin-top: auto;
}
#footertext {
background-color: hsl(57, 88%, 86%);
text-align: center;
margin: -5px 0 0 0;
padding-bottom: 3px;
color: rgb(67, 66, 66);
}
#footercontent{
margin: 0;
padding: 2px 0 0 0;
}