-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (95 loc) · 1.77 KB
/
style.css
File metadata and controls
116 lines (95 loc) · 1.77 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Thambi+2:wght@500&display=swap');
* {
box-sizing: border-box;
font-family: 'Cabin', sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
flex-direction: column;
background: blueviolet;
}
.externalContainer {
background-color: white;
display: flex;
align-items: left;
justify-content: center;
flex-direction: column;
padding: 20px 40px;
width: 400px;
border-radius: 7px;
box-shadow: 0px 0px 2px 4px rgb(83, 81, 81);
}
.heading {
display: flex;
justify-content: center;
}
h1 {
font-size: 25px;
}
.form {
display: flex;
align-items: left;
justify-content: center;
flex-direction: column;
}
.container {
display: flex;
align-items: left;
justify-content: center;
flex-direction: column;
margin-bottom: 20px;
}
button {
margin-top: 20px;
}
label,input,small {
padding: 2px 0 0 0;
font-family: 'Baloo Thambi 2', cursive;
}
label {
font-weight: 700;
}
small {
color: red;
display: none;
}
input {
margin: 3px 0;
padding: 5px;
font-size: 16px;
border: 1px solid grey;
border-radius: 5px;
}
input:focus {
outline: none;
}
input:active {
outline: none;
}
input.invalid {
border: 1px solid red;
}
input.valid {
border: 1px solid rgb(6, 214, 6);
}
.submit {
font-size: 18px;
padding: 8px 0;
background-color: blueviolet;
border: none;
color: white;
border-radius: 5px;
cursor: pointer;
}
.submit:focus {
outline: none;
}
.submit:active {
transform: scale(0.98);
}