-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompGen.css
More file actions
56 lines (49 loc) · 893 Bytes
/
Copy pathcompGen.css
File metadata and controls
56 lines (49 loc) · 893 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
53
54
55
56
#header{
color: rgb(213, 11, 11);
text-align: center;
letter-spacing: 3px;
font-family: cursive;
font-size: 2.5rem;
}
body{
background-color: pink;
}
#inp1{
font-size: 2rem;
margin-top: 50px;
text-align: center;
color: red;
margin-left: 10rem;
}
#inp2{
font-size: 2rem;
margin-left: 20rem;
text-align: center;
color: red;
}
#button{
font-size: 3rem;
margin-left: 40rem;
border-radius: 20px;
color: red;
background-color: white;
cursor: pointer;
transition: background-color 0.5s ease;
}
.button:hover{
background-color: green;
}
#result{
font-size: 4rem;
text-align: center;
margin-top: 125px;
border: 9px solid red;
color: red;
}
#label{
margin-left: 40.5rem;
font-size: 1rem;
text-align: center;
color: red;
border: 2px solid;
}