-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (46 loc) · 853 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
45
46
47
48
49
50
51
52
53
54
55
56
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
main {
width: 100%;
height: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.container {
width: 40%;
padding: 20px;
border-radius: 10px;
background: #c1c1c14a;
}
.form-container {
margin: 30px 0;
display: flex;
align-items: center;
}
.inp {
outline: none;
border: 2px solid #808080;
border-radius: 10px;
margin: 0 10px;
padding: 5px;
width: 70px;
}
.btn {
outline: none;
border: none;
padding: 5px 10px;
border-radius: 10px;
cursor: pointer;
transition: .4s;
}
.text-result {
margin: 10px 0;
}