-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
84 lines (78 loc) · 1.6 KB
/
index.css
File metadata and controls
84 lines (78 loc) · 1.6 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
/*give a good css use raleway font and give a background color of #f4f4f4*/
/*add rounded corners and neat padding for everything*/
* {
box-sizing: border-box;
font-family: "Raleway";
margin: 0px;
}
.animating {
transition-duration: 300ms;
color: white !important;
}
#rir {
font-size: 0.75rem;
}
input {
border: 1px solid black;
}
body {
width: 100%;
display: flex;
height: 98vh;
align-items: center;
justify-content: center;
background-image: url("./bg.svg");
padding: 0px;
margin: 0px;
flex-direction: column;
}
body > div {
max-width: 800px;
background-color: white;
border-radius: 1rem;
padding: 2rem;
box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.099);
}
body *{
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
button {
background-color: #006eff;
color: white;
border: none;
border-radius: 1rem;
padding: 0.5rem 1rem;
cursor: pointer;
}
body.dark {
filter: invert(1);
background-color: rgb(20, 20, 20);
}
body.dark .err {
filter: invert(1);
background-color: rgb(49, 0, 0) !important;
color: rgb(255, 102, 102) !important;
}
body.dark #asminptext {
font-weight: bold;
}
body.dark button {
filter: invert(1);
}
body.dark .value {
filter: invert(1);
}
textarea {
border-radius: 0.5rem;
padding: 1rem;
}
input {
border-radius: 1rem;
padding: 0.25rem 0.6rem;
width: 100%;
}
#footnote {
position: absolute;
bottom: 0px;
}