-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
140 lines (124 loc) · 2.2 KB
/
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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #49108b;
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Fira Sans", Georgia, Futura, Montserrat, Verdana, "Roboto", sans-serif;
font-size: 16px;
line-height: 1.3;
border-radius: 0px;
overflow-x: hidden;
}
#header {
background-color: #49108b;
width: 100%;
padding: 2px 15px;
box-sizing: border-box;
display: flex;
justify-content: space-between;
align-items: center;
}
#settingsLink {
color: #e6e6fa;
text-decoration: none;
font-size: 14px;
}
#settingsLink:hover {
text-decoration: underline;
}
#content {
background-color: #f3f8ff;
padding: 10px;
margin: 10px 0;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.popup {
width: 780px;
}
h1 {
font-size: 24px;
margin: 0;
color: white;
padding: 5px 0 0 0;
}
h3 {
font-size: 18px;
margin: 0 0 20px 0;
padding: 0;
color: green;
}
button {
background-color: #4caf50; /* Green */
border: none;
color: white;
border-radius: 4px;
padding: 10px 16px;
text-align: center;
text-decoration: none;
font-size: 16px;
margin: 4px 4px;
cursor: pointer;
height: 36px;
display: flex;
justify-content: center;
align-items: center;
}
#summary-area {
padding: 15px;
margin: 10px 0 0 0;
background-color: #f3f8ff;
}
#setupForm {
display: flex;
flex-direction: column;
align-items: left;
margin: 10px 0;
width: 740px;
}
#setupForm input[type="text"] {
height: 30px;
padding: 0px 10px;
margin: 0 0 0 10px;
font-size: 16px;
}
#setupForm label {
display: inline-block;
width: 220px;
text-align: left;
margin-right: 10px;
}
#setupForm button {
margin: 10px 0 0 0;
font-weight: bold;
}
.instruction-box {
border: 1px solid #ccc;
padding: 10px;
margin: 10px 0;
font-size: 0.9em;
color: #666;
background-color: #f9f9f9;
border-radius: 5px;
}
.spinner {
display: none;
border: 6px solid #f3f3f3;
border-top: 6px solid #3498db;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin: 40px auto;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}