-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
108 lines (100 loc) · 1.73 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
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
html, body {
font-family: "Open Sans", sans-serif;
font-size: 14px;
margin: 0;
min-height: 180px;
width: 1000px;
text-align: center;
max-width: 1000px;
margin: auto;
background-color: rgb(211, 211, 211);
}
.box{
background-color: #fff;
padding-bottom: 20px;
width:499px;
height: 100%;
float:left;
}
.left{
border-right:2px solid #a8a8a8;
}
h1 {
font-family: 'Menlo', monospace;
font-size: 22px;
font-weight: 400;
margin: 0;
text-align: center;
}
.logo-icon {
vertical-align: text-bottom;
margin-right: 12px;
}
.version {
font-size: 14px;
}
.modal-header {
align-items: center;
height:50px;
line-height: 50px;
border-bottom: 0.5px solid #dadada;
background-color: rgb(226, 29, 29);
color: white;
}
.modal-content {
padding: 20px 50px;
}
.url{
padding: 40px 0;
}
.url>input{
width:300px;
}
.time {
width: auto;
height: 80px;
/* background-color: aquamarine; */
text-align: center;
}
.start, .end {
display: inline-block;
}
.time input {
padding: 5px;
border: none;
border-width: 0;
box-shadow: none;
outline: none;
border-bottom: solid .5px rgb(66, 66, 66);
}
.time input:hover {
border-bottom: solid 2px black;
}
.instructions{
margin: 30px;
padding: 0 50px;
}
.instructions h4{
font-weight: 400;
text-align: left;
}
.instructions p{
text-align: left;
}
.left-instruct{
padding-top: 62px;
}
.button .sub{
width:80px;
height: 30px;
border: none;
border-width: 0;
background-color: rgb(255, 35, 35);
color: white;
border-radius: 2px;
margin-top: 20px;
}
.button .sub:hover{
cursor: pointer;
background-color: rgb(226, 29, 29);
}