-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimpleint.css
More file actions
82 lines (76 loc) · 1.56 KB
/
Copy pathsimpleint.css
File metadata and controls
82 lines (76 loc) · 1.56 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
body{
background-image: linear-gradient(#0d89f3, #c4dee9);
background-repeat: no-repeat;
}
.container{
display: grid;
justify-items: center;
width: 630px;
height: 100vh;
margin: 0 auto;
border-radius: 10px;
box-shadow: 0 0 16px 12px rgba(37, 73, 214, 0.18);
}
h1{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
input[placeholder="Enter number"]
{
background: white;
border: 2px solid rgb(170, 170, 232);
width: 130px;
text-align: center;
height: 30px;
border-radius: 50px;
font-size: 16px;
color: black;
}
label{
color: white;
margin-top: 10px;
font-size: 30px;
}
#btn{
font-size: 20px;
border: 2px #5a58f1;
border-radius: 4px;
color: white;
width: 130px;
height: 40px;
background:rgb(31, 79, 226);
}
input[type=text] {
width: 130px;
height: 60%;
transition: width .35s ease-in-out;
}
input[type=text]:focus {
width: 250px;
border: 2px solid;
outline: 0;
border-color: #1580dd;
box-shadow: 0 0 15px 1px rgb(50, 134, 201);;
}
#si{
font-family: sans-serif;
font-size:20px ;
}
#btn:hover{
background: rgb(31, 79, 200);
color: black;
outline: none;
cursor: pointer;
transform: scale(1.1);
}
#btn2:focus{
outline: 0;
}
hr{
color: peru;
width: 100%;
height: 0;
}
footer{
font-family: sans-serif;
color:rgb(143, 40, 40);
}