-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (81 loc) · 2.26 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url("./carl-heyerdahl-KE0nC8-58MQ-unsplash.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat ;
font-family: system-ui, -apple-system,Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
#lo {
width: 60px;
border-radius: 30px;
}
img {
width: 100%;
}
#form{
width: 400px;
margin: 10vh auto 0 auto;
background-color: rgb(240, 242, 242);
border-radius: 0px 0px 0px 0px;
padding: 30px;
box-shadow: inset 0px 0px 10px rgb(31, 53, 41), 0px 0px 16px rgb(0, 0, 0);
}
h1{
text-align: center;
color: rgb(4, 30, 23);
}
#form button{
background: linear-gradient(120deg,rgba(224, 229, 227, 0.87),rgba(50, 56, 56, 0.904));
color: rgb(57, 58, 57);
border-radius: 0px;
padding: 10px;
margin: 20px 0px;
cursor: pointer;
font-size: 20px;
width: 100%;
}
.input-box label{
font-size: 18px;
}
.input-box{
display: flex;
flex-direction: column;
margin-bottom: 10px;
padding: 5px;
margin-top: 10px;
}
.input-box input{
border-radius: 5px;
font-size: 18px;
margin-top: 5px;
padding: 10px;
border: 1px solid rgb(34, 193, 187);
}
.input-box input:focus{
outline: 0;
box-shadow: 0px 0px 4px rgb(0, 238, 255);
}
.input-box .error{
color: rgb(90, 5, 5);
font-size: 20px;
margin-top: 5px;
}
.input-box.success input{
border-color:rgb(14, 231, 14);
}
.input-box.error input{
border-color:rgb(90, 5, 5);
}
.todo{
font-size: 18px;
background-color: rgb(155, 203, 203);
border-radius: 10px;
box-shadow: inset 0px 0px 10px rgb(172, 165, 165), 0px 0px 5px rgb(0, 0, 0);
cursor: pointer;
padding: 5px;
}