-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
87 lines (74 loc) · 1.16 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
.title {
padding: 5px;
margin: 0;
background-color: rgb(0, 140, 255);
font-size: large;
font-weight: 700;
color: #ffff;
width: 100%;
}
.title .text {
margin: 0;
}
.title .introduction {
font-size: small;
font-weight: 500;
margin: 0;
}
.body {
margin: 0;
padding: 5px;
}
.row {
display: flex;
font-size: medium;
font-weight: 500;
}
.select {
padding: 5px;
margin: auto 5px auto auto;
width: 50%;
font-size: small;
border-radius: 5px;
border-color: rgb(0, 140, 255);
}
.select:hover{
border-width: 2px;
}
.button {
margin: auto;
background-color: rgb(0, 140, 255);
color: white;
font-size: medium;
font-weight: 500;
outline: none;
border-radius: 5px;
border: none;
padding: 5px;
cursor: pointer;
}
.contact{
background-color: rgb(241, 243, 244);
padding: 5px;
}
.icon-container {
display: flex;
justify-content: center;
align-items: center;
padding: 5px;
}
.icon {
display: inline-block;
background-color: #ffff;
border-radius: 50%;
width: 50px;
height: 50px;
margin: 0 10px;
transition: transform 0.3s;
}
.icon:hover {
transform: scale(1.2);
}
.contact .text{
text-align: center;
}