-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (73 loc) · 1.43 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
* {
font-family: 'Times New Roman', Times, serif;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.converter {
background: #e7c6ff;
padding: 10px 20px;
border-radius: 10px;
box-shadow: 0px 4px 16px 2px rgba(0, 0, 0, 0.2);
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
}
.converter>.title {
display: flex;
align-items: center;
}
.converter>.title svg {
width: 30px;
margin-right: 5px;
color: #0096c7;
}
.converter>.title>h1 {
font-size: 18px;
font-weight: 900;
}
#convertForm>div {
display: flex;
flex-direction: column;
margin: 10px 0;
color: #5390d9;
}
#convertForm>div>input,
#convertForm>div>select {
border: 1px solid rgba(210, 207, 207);
padding: 12px;
border-radius: 6px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
-ms-border-radius: 6px;
-o-border-radius: 6px;
box-shadow: 8px 3px 15px rgba(0, 0, 0, 0.1);
background: #ff8fa3;
color: #10451d;
}
#convertForm>button {
width: 100%;
background: #40916c;
color: #480ca8;
border: none;
padding: 10px;
margin: 6px 0;
cursor: pointer;
}
#convertResult {
width: 100%;
margin: 20px 0;
font-weight: 900;
}
#convertResult.error {
color: red;
padding: 20px;
}