-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (91 loc) · 1.65 KB
/
styles.css
File metadata and controls
105 lines (91 loc) · 1.65 KB
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
body {
font-family: 'Arial Black', sans-serif;
background-color: #d6e2e9;
margin: 1%;
}
.app {
margin: 0 auto;
width: 300px;
}
.app__header {
text-align: center;
padding: 0;
margin: 0;
color: #001233;
font-family: 'Grandstander', cursive;
font-size: 400%;
}
.app__input-data {
padding: 0;
margin: 8%;
padding-bottom: 10px;
}
.app__input-label {
display: block;
padding: 10px;
text-align: center;
color: #001233;
}
.app__input {
box-sizing: border-box;
width: 100%;
display: block;
font-size: 24px;
color: #001233;
border: 2px solid #001233;
border-radius: 5%;
}
.app__input:focus {
outline: none;
border: 2px solid #001233;
}
.app__btn-convert {
font-family: inherit;
font-size: 16px;
width: 100%;
padding-top: 15px;
padding-bottom: 15px;
color: #03045e;
background-color: #ffffff;
border: 2px solid #001233;
border-radius: 10%;
}
.app__btn-convert:hover,
.app__btn-convert:focus {
cursor: pointer;
color: #ffffff;
background-color: #1a5b92;
transition: 0.1s;
}
.app__output {
margin: 0;
margin-top: 10px;
margin-bottom: 10px;
padding: 15px;
background-color: #0466c8;
color: #ffffff;
text-align: center;
}
.app-table {
width: 100%;
color: #ffffff;
border-collapse: collapse;
border: 2px solid #0353a4;
}
.app-table__row:nth-child(odd) {
background-color: #0466c8;
}
.app-table__row:nth-child(even) {
background-color: #0353a4;
}
.app-table__cell {
text-align: center;
padding-top: 15px;
padding-bottom: 15px;
width: 50%;
border: 2px solid #001233;
}
.app-table__cell:nth-child(even) {
border-left: 1px solid #D3D3D3;
border: 2px solid #001233;
}