-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (84 loc) · 1.5 KB
/
Copy pathstyle.css
File metadata and controls
95 lines (84 loc) · 1.5 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
*
{
margin: 0;
padding: 0;
}
body
{
background-color: rgb(207, 216, 220);
background-image: linear-gradient(to right, rgb(205, 217, 222) , rgb(197, 232, 233));
}
h1
{
color: rgb(120, 105, 255);
font-size: 3rem !important;
font-weight: bolder;
font-family: 'Poppins', sans-serif;
text-align: center; word-spacing: 10px;
padding: 30px;
margin-top: 20px;
}
.warn
{
color: red;
font-size: 20px;
padding-top: 0px;
text-align: center;
}
.content
{
background-color: rgb(120, 105, 255); border: 2px white; border-radius: 20px;
margin: 10px auto; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-weight: 500; font-size: 1.7rem;
max-width: 350px;
min-height: 90px;
padding: 20px;
position: absolute;
top: 60%;
left: 50%;
transform: translate(-52%, -50%);
}
input
{
display: flex;
flex-direction: column;
padding-left: 5px;
min-width: 400px !important;
margin-top: 10px;
border-radius: 0.5%;
}
#invalid
{
margin-top: 5px;
color: red;
}
button
{
border-radius: 10px;
margin-left: 37%;
}
@media only screen and (min-width: 350px)
{
.content
{
min-width: 450px !important;
}
}
@media only screen and (min-width: 762px)
{
h1
{
font-size: 5rem;
padding: 10px;
}
.content
{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.warn
{
display: none;
}
}