-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (86 loc) · 1.66 KB
/
Copy pathstyle.css
File metadata and controls
99 lines (86 loc) · 1.66 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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #343540;
overflow: hidden;
font-family: sans-serif;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
#logo {
/* flex: 1;
margin: 0 auto;
max-width:200px; */
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
z-index: -1;
max-width: 300px;
}
.svnscanlink {
display: inline;
}
.svnscanlink img{
width:20px;
height: 20px;
padding: 10px;
}
.links-container{
margin-top: 50px;
}
#logo img {
width: 100%;
}
.card {
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(11px);
border-radius: 20px;
padding: 40px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
max-width: 500px;
margin: 0 auto;
z-index: 1;
}
button {
margin-top: 20px;
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #007bff;
color: white;
cursor: pointer;
transition: background-color 0.3s;
}
button:disabled {
background-color: #cccccc;
cursor: not-allowed;
}
button:hover:not(:disabled) {
background-color: #0056b3;
}
input {
margin-top: 10px;
padding: 15px 20px;
border: none;
border-radius: 10px;
width: 90%;
font-size: 1.2em;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
outline-color: #007bff;
background-color: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(5px);
}