-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathb1g.css
128 lines (118 loc) · 1.95 KB
/
b1g.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
body {
font-family: Arial, Helvetica, Sans-Serif;
}
header h1 {
margin-bottom: 0;
}
header p {
margin-top: 0;
}
#spongiebobText {
max-width: 500px;
word-wrap: break-word;
line-height: 1.2em;
}
.copyButton p {
margin: 0;
}
.copyButton .in {
animation: slide-out 250ms forwards ease 1;
}
.copyButton .out {
animation: slide-in 250ms forwards ease 1;
}
@keyframes slide-in {
from {
transform: translateY(+150%);
}
}
@keyframes slide-out {
from {
transform: translateY(-150%);
}
}
.text-center {
text-align: center !important;
}
#form {
width: 100%;
max-width: 400px;
margin-top: 10px;
}
#form .inputs {
width: calc(100% - 105px);
display: inline-block;
}
#form input[type="text"] {
padding: 10px;
width: 100%;
outline: none;
border: 1px solid grey;
height: 35px;
}
#form button {
width: 100px;
margin-left: auto;
margin-right: 0;
padding: 10px;
background: #fff;
border: 1px dashed black;
outline: none;
transition: 200ms;
cursor: pointer;
position: absolute;
margin-left: 5px;
height: 35px;
}
#form button:hover {
background: grey;
border: 1px solid grey;
color: white;
}
.greenText {
color: #7F9832;
text-align: left;
}
.slide-fade-enter-active {
transition: all .1s ease;
}
.slide-fade-leave-active {
transition: all .1s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to
{
transform: translateX(-10px);
opacity: 0;
}
.disabled {
cursor: not-allowed !important;
}
.disabled:hover {
background: transparent !important;
border: 1px dashed black !important;
color: black !important;
}
.container {
display: flex;
align-items: center;
flex-direction: column;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}