-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (54 loc) · 1019 Bytes
/
style.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
body {
font-family: Arial, sans-serif;
margin: 10px;
background: radial-gradient(circle, rgb(255, 100, 100), rgb(255, 110, 243));
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 90vh;
min-height: 80vh;
position: relative;
color: #fff;
}
label{
font-size: 1rem;
}
.wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#optionsForm{
display: flex;
flex-direction: column;
}
#safeWebsiteInput{
font-size: 1rem;
padding: 10px;
border-radius: 1rem;
border: none;
}
button{
font-size: 1rem;
padding: 10px;
border-radius: 1rem;
border: none;
margin-top: 10px;
background-color: black;
color: #fff;
transition: all 0.3s ease;
}
button:hover{
cursor: pointer;
background-color:#fff;
color: black;
}
#confirmationMessage{
font-size: 1rem;
padding: 10px;
border-radius: 1rem;
border: none;
color: greenyellow;
}