-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (43 loc) · 833 Bytes
/
style.css
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
body{
border: 10px solid black;
border-radius: 5px;
height: 100vh;
background:linear-gradient(orange,red);
background-repeat: no-repeat;
background-size: cover;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
.content{
border:solid black 10px;
border-radius: 30px;
background:linear-gradient(red,orange);
background-repeat: no-repeat;
display: inline-block;
margin-top: 140px;
padding: 30px 50px;
text-align: justify;
}
h2{
text-decoration:underline;
}
input{
width: 220px;
height:30px;
color:black;
font-size: large;
}
button{
border-radius: 10px;
width: 100px;
margin-left: 60px;
font-size: medium;
}
button:hover{
background-color: green;
}
#result,#result1{
margin-top: 20px;
font-size: large;
color:black;
}