-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (102 loc) · 1.81 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
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
* {
box-sizing: border-box;
}
html,
body {
margin: 20px;
background-color: #fafafa;
padding: 0;
background: #f5f5f5;
font-family: 'Montserrat';
font-size: 18px;
font-weight: 300;
}
h2 {
text-align: center;
color: #1abc9c;
}
textarea {
width: 220px;
resize: vertical;
padding: 15px;
border-radius: 15px;
border: 0;
box-shadow: 4px 4px 10px rgba(0,0,0,0.06);
height: 130px;
margin-right: 40px;
font-size: 13px;
color: #000;
}
label {
color: #1abc9c;
}
select {
background: #fff;
border: 0;
border-radius: 15px;
box-shadow: 4px 4px 10px rgba(0,0,0,0.06);
}
#textOutput {
display: none;
}
#buttonSend {
height: 60px;
width: 75px;
border: 0;
margin-top: 15px;
background: #1abc9c;
color: #fafafa;
font-size: 15px;
box-shadow: 6px 6px 12px rgba(0,0,0,0.06);
}
#buttonSend:hover {
height: 65px;
width: 80px;
transition: 0.2s ease-in-out;
font-size: 17px;
}
button {
position: relative;
width: 100px;
height: 60px;
margin: 20px auto;
padding: 0;
text-align: center;
border: none;
outline: none;
cursor: pointer;
overflow: hidden;
transition: transform 0.4s ease-in-out;
border-radius: 15px;
}
.btn-green {
overflow: auto;
height: 50px;
width: 50px;
bottom: 95px;
border-radius: 50%;
}
.buttons {
height: 100px;
width: 100px;
margin-left: 88px;
bottom: 95px;
}
.icon {
position: absolute;
left: 13.5px;
top: 13px;
}
.btn-green {
background: #1abc9c;
border-bottom: 2px solid #12ab8d;
box-shadow: inset 0 -2px #12ab8d;
}
.btn-green .icon {
width: 24px;
height: 24px;
transition: all 0.4s ease-in-out;
}
.btn-green:hover .icon {
transform: rotate(360deg) scale(1.2);
}