-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
101 lines (86 loc) · 1.37 KB
/
styles.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
body::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.5;
background-image: url("./assets/background.png");
background-repeat: repeat;
background-size: 25%;
}
* {
box-sizing: border-box;
}
a {
color: #007bff;
text-decoration: none;
background-color: transparent;
}
a,
button {
transition: 220ms all ease-in-out;
}
a:hover {
color: #0056b3;
text-decoration: underline;
}
button {
border: none;
background: transparent;
font-family: inherit;
padding: 0;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
}
h1,
h2 {
color: #007bff;
}
.container {
text-align: center;
margin: 0 auto;
max-width: 700px;
}
.content {
background: #fff;
box-shadow: 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
padding-top: 5px;
overflow-y: auto;
}
.errors {
margin-top: 5px;
background: rgb(225, 225, 225);
width: 100%;
display: flex;
flex-direction: column;
gap: 2px;
}
button.error {
background: #fff;
transition-property: background-color;
}
button.error:hover {
background: rgb(245, 245, 245);
}
button.error:focus {
border: 3px solid #007bff;
}
.error > h4 {
margin-top: 0;
}
.logo {
width: 60%;
padding: 15px;
}
p {
padding-left: 24px;
padding-right: 24px;
}