-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (73 loc) · 2.05 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
body,
html {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
height: 100%;
display: grid;
}
.container {
margin: auto;
padding: 20px;
}
h1,h2,h3 {
font-size: 20px;
}
a {
text-decoration: none;
}
img {
width: 100%;
max-width: auto;
}
input[type=text] {
appearance: none;
border: none;
outline: none;
width: 24em;
border-bottom: .2em solid #1c4208;
background: rgba(#47f409, .2);
}
button {
border-radius: 30px;
font-size: 20px;
padding: 20px 40px 20px 70px;
background: #dd6e2e;
background-image: url("mm.png");
background-size: 40px;
background-repeat: no-repeat;
background-position: 20px;
font-weight: bold;
color: #fff;
box-shadow: inset 2px 2px 0 #fff, 0 8px 10px -4px rgba(0, 0, 0, 0.4);
cursor: pointer;
transition: all 0.4s ease;
}
#send-button {
border-radius: 30px;
font-size: 20px;
padding: 20px 40px 20px 70px;
background: #ffffff;
background-image: url("s.png");
background-size: 40px;
background-repeat: no-repeat;
background-position: 20px;
font-weight: bold;
color: #585858;
box-shadow: inset 2px 2px 0 #fff, 0 8px 10px -4px rgba(0, 0, 0, 0.4);
cursor: pointer;
transition: all 0.4s ease;
}
#copy-button {
border-radius: 30px;
font-size: 20px;
padding: 20px 40px 20px 70px;
background: #2cb41d;
background-image: url("copy.png");
background-size: 40px;
background-repeat: no-repeat;
background-position: 20px;
font-weight: bold;
color: #fff;
box-shadow: inset 2px 2px 0 #fff, 0 8px 10px -4px rgba(0, 0, 0, 0.4);
cursor: pointer;
transition: all 0.4s ease;
}