-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (80 loc) · 1.65 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (80 loc) · 1.65 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
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
:root {
--color1: #fffffe;
--color2: #094067;
--color3: #90b4ce;
--color4: #bae8e8;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Varela Round', sans-serif;
font-size: 15px;
}
body {
background-color: var(--color4);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.form {
background-color: var(--color3);
color: var(--color2);
padding: 15px;
border-radius: 10px;
width: 300px;
border: 2px solid var(--color2);
text-align: center;
box-shadow: 0px 0px 18px 8px rgba(0, 0, 0, 0.48);
}
.form-control {
margin-bottom: 15px;
}
.form-control input {
text-align: center;
padding: 10px;
border-radius: 15px;
width: 100%;
border: 2px solid var(--color2);
}
.form-control input:focus {
outline: none !important;
border: 2px solid var(--color2);
}
.form-control button {
background-color: var(--color2);
color: var(--color1);
display: block;
cursor: pointer;
padding: 10px 5px;
width: 100%;
border: 2px solid var(--color2);
border-radius: 15px;
transition-duration: .3s;
transition-timing-function: ease;
}
.form-control button:hover {
background-color: transparent;
color: var(--color2);
}
.container {
text-align: center;
}
#img {
width: 70%;
margin-top: 30px;
}
footer {
position: fixed;
width: 100%;
height: 5%;
bottom: 0px;
justify-content: space-between;
}
footer p {
text-align: center;
font-size: small;
color: var(--color2);
}