-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (93 loc) · 1.52 KB
/
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
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
*,
*:before,
*:after {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
height: 100vh;
background: linear-gradient(135deg, #d95454, #bf2e2e);
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: #fff;
}
input {
width: 200px;
height: 30px;
padding: 4px;
margin: 5px;
border-style: none;
border-radius: 5px;
}
input:focus {
outline: none;
}
button {
width: 100px;
height: 30px;
border-style: none;
cursor: pointer;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
button:hover {
cursor: pointer;
}
#button2 {
width: 310px;
height: 30px;
border-style: none;
border-radius: 5px;
margin-left: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
#error {
display: none;
margin: 5px;
transition: all 0.1s;
-webkit-transition: all 0.1s;
-moz-transition: all 0.1s;
-ms-transition: all 0.1s;
-o-transition: all 0.1s;
}
ul {
display: flex;
list-style-type: none;
padding: 10px;
}
li {
padding: 5px;
}
.text-div {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
padding: 35px;
row-gap: 10px;
}
.description {
padding: 0.5rem 0 1.5rem 0;
text-align: center;
}
.wrapper {
padding-top: 20px;
}
.Before-After {
display: flex;
flex-direction: column;
align-items: center;
}
#reset {
display: none;
width: 150px;
}