-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
114 lines (98 loc) · 1.62 KB
/
styles.css
File metadata and controls
114 lines (98 loc) · 1.62 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body {
display: flex;
justify-content: center;
align-items: flex-start;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
overflow: hidden;
background-color: black;
color: white;
font-family: "Roboto", sans-serif;
}
#container {
text-align: left;
margin-top: 50px;
}
textarea {
width: 30rem;
height: 15rem;
padding: 10px;
font-size: 16px;
margin: 10px 0;
font-family: "Roboto", sans-serif;
margin-top: 1.5rem;
}
button {
padding: 10px 20px;
font-size: 16px;
margin-top: 1rem;
font-family: "Roboto", sans-serif;
background-color: transparent;
border-style: solid;
border-width: 1px;
border-color: white;
color: white;
}
.result {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 20px;
border: 1px solid #ccc;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
z-index: 1000;
color: black;
}
.result h2 {
margin-top: 0;
width: 32rem;
margin-top: 1.5rem;
margin-bottom: 1.5rem;
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(5px);
z-index: 999;
}
.overlay.active,
.result.active {
display: block;
}
#resultContent {
margin-right: auto;
margin-left: auto;
text-align: left;
display: table;
}
#close {
margin-bottom: 0.75rem;
margin-top: 1.5rem;
background-color: black;
}
#summary {
text-align: center;
font-size: 12pt;
margin-top: 1rem;
}
a:link {
color: white;
}
a:visited {
color: white;
}
a:hover {
color: white;
}
a:active {
color: white;
}