forked from abcotter/WhoFundsYourFeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
113 lines (102 loc) · 1.97 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
108
109
110
111
112
113
body{
width: 400px;
height: 450px;
background-color: #ffcbc6;
}
h1 {
font-family: Impact, fantasy;
font-size: 40px;
color: #292f36;
font-style: italic;
text-align: center;
}
h2 {
font-size: 20px;
color: #292f36;
display: flex;
justify-content: center;
margin-bottom: 25px;
}
h3{
font-size: 15px;
color: #292f36;
display: flex;
text-align: center;
}
p{
text-align: center;
}
a{
text-decoration: none;
}
button {
display: block;
height: 50px;
width: 200px;
padding: 10px;
outline: none;
margin: 0 auto;
border: none;
border-radius: 5px;
text-align: center;
justify-content: center;
background-color:#4ecdc4;
box-shadow: 0px 8px 15px rgba(0,0, 0, 0.1);
transition: all 0.3s ease 0s;
cursor: pointer;
}
button:hover{
background-color: #f7fff7;
box-shadow: 0px 15px 20px rgba(0,0, 0, 0.1);
transform: translateY(-2px);
}
.flex-container{
display: flex;
justify-content: center;
margin-bottom: 40px;
}
.flex-container:first-child{
flex: 1;
order: 1;
}
.flex-container:nth-child(2){
flex:1;
order: 2;
margin: 20px;
}
input[type=button]{
display: block;
height: 22px;
width: 70px;
outline: none;
margin-left: 20px;
border: none;
border-radius: 5px;
text-align: center;
justify-content: center;
background-color:#4ecdc4;;
box-shadow: 0px 8px 15px rgba(0,0, 0, 0.1);
transition: all 0.3s ease 0s;
cursor: pointer;
}
input[type=button]:hover{
background-color:#f7fff7;
box-shadow: 0px 15px 20px rgba(0,0, 0, 0.1);
transform: translateY(-2px);
}
.gap{
margin-bottom: 70px;
}
input[type=text] {
padding: 100;
height: 20px;
position: relative;
left: 0;
outline: none;
border: 1px solid #cdcdcd;
border-color: rgba(0, 0, 0, .15);
background-color: white;
box-shadow: 0px 8px 15px rgba(0,0, 0, 0.1);
font-size: 14px;
border-radius: 5px;
}