-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
77 lines (62 loc) · 1.13 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
textarea {
line-height: 1.5em;
min-width: 265px;
height: 100%;
}
textarea::placeholder {
background-image: url(./img/np-logo.svg);
background-repeat: no-repeat;
height: 100%;
background-position: bottom;
}
button {
min-width: 130px;
}
button:active {
transform: translateY(1px);
}
button:disabled {
background: #aaa;
border: 1px solid #aaa;
}
button:disabled:hover {
background: #aaa;
border: 1px solid #aaa;
}
button:disabled:after {
content: " ...";
animation: hightlight 1.3s infinite linear;
}
@keyframes hightlight {
50% {
opacity: .2;
}
100% {
opacity: 1;
}
}
.main-content {
position: relative;
display: flex;
justify-content: space-between;
}
.result {
margin: 0 10px;
background: rgba(223, 223, 223, 0.479);
flex: 1 1 200px;
border-radius: 4px;
padding: 0.75rem;
line-height: 1.5em;
}
.contacts-links {
text-align: center;
font-size: 0;
margin-top: 80px;
}
.contacts-links svg {
margin: 0 5px;
}
.contacts-links svg:hover {
background: rgba(0, 0, 0, 0.1);
border-radius: 50%;
}