-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
79 lines (71 loc) · 1.3 KB
/
popup.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
#exit {
position: relative;
top: 10px;
color: #ef2c45;
background-color: white;
border-style: none;
cursor: pointer;
}
#exit .material-icons {
font-size: 48px;
background-color: none;
}
.popup {
position: absolute;
visibility: hidden;
width: 80vmin;
max-width: 500px;
/* height: 400px; */
box-shadow: 3px 3px 3px 3px rgba(10, 10, 10, 0.2);
border-radius: 5%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 100;
font-size: x-large;
}
form {
margin: 10px auto;
line-height: 200%;
}
form input {
color: #a89295;
font-size: large;
line-height: 50%;
border-radius: 9999em;
border: 3px solid #ffbfbf;
}
form input:focus {
border-color: #ffbfbf;
}
form input[type="number"] {
width: 80px;
}
#setTime {
font-size: 1em;
font-family: Arial, Helvetica, sans-serif;
border: none;
padding: 5px 10px;
margin: 10px;
background: #ffbfbf;
color: white;
cursor: pointer;
border: none;
outline: none;
border-radius: 10%;
}
/*
.nav {
border-top: 1px solid rgba(10, 10, 10, 0.2);
width: 80%;
transform: translateX(13%);
}
nav {
display: flex;
justify-content: space-evenly;
float: 2;
}
nav li {
list-style: none;
border-bottom: 3px solid #ffbfbf;
} */