-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
97 lines (81 loc) · 1.33 KB
/
popup.css
File metadata and controls
97 lines (81 loc) · 1.33 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Noto Sans JP;
}
h1{
font-size: 3em;
}
h2{
font-size: 1.8em;
}
label{
font-size: 1.5em;
}
body{
width:470px;
background-color: white;
border: 5px solid rgb(59, 131, 59);
}
#title{
padding: 10px;
text-align: center;
font-weight: bold;
color: rgb(206, 35, 35);
}
#schedule-title{
padding: 0px 10px 10px 20px;
color: green;
}
.schedule{
display: flex;
margin-bottom: 25px;
}
.option input{
margin-left: 20px;
}
#auto-option{
display: flex;
flex-direction: column;
margin-left: 43px;
display: none;
}
.to{
padding-left: 21px;
margin-top: 10px;
}
.websites{
display: flex;
justify-content: space-between;
}
.website-list{
margin: 20px;
}
.website-title{
margin-bottom: 10px;
color: green;
}
#savebtn{
cursor: pointer;
margin-left: 210px;
margin-bottom: 10px;
padding: 5px;
font-size: 1.5em;
font-weight: bold;
border: 2px solid green;
color: green;
background-color: rgba(255, 255, 255, 0);
border-radius: 5px;
transition: 0.3s;
}
#savebtn:hover{
background-color: rgba(0, 128, 0, 0.541);
color: black;
}
#status{
margin: 0px 0px 20px 20px;
font-size: 1.25em;
font-weight: bold;
text-align: center;
}