-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (88 loc) · 1.7 KB
/
styles.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
html{
background: #012726;
color: #fdfffc;
font-family: 'Orbitron',sans-serif;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
h3,p{
display: flex;
font-weight: 400;
font-size: 1.5rem;
margin: 0 .1em;
padding: 0;
font-weight: 700;
}
/*
h3{
margin-top: 1em;
} */
.card{
display: flex;
flex-direction: column;
margin: 2em 2em;
width: 50%;
background: #269d91;
border-radius: 1em;
text-align: center;
align-items: end;
}
.convert,.to{
display: flex;
flex-direction: row;
margin: .5em;
justify-content: left;
align-items: center;
margin-right: 5em;
}
.convert{
margin-top: 2em;
}
input{
max-width: 50%;
padding: 1em 1em 1em 2em;
font-family: 'Orbitron',sans-serif;
border: none;
border-radius: 2em;
margin-left: .5em;
}
input:active{
border: none;
}
select{
max-width: 50%;
text-align: center;
border: none;
padding: 1em 1em 1em 2em;
margin-left: 1em;
border-radius: 2em;
font-family: 'Orbitron',sans-serif;
text-transform: uppercase;
font-weight: 600;
background: #007368;
color: #fdfffc;
}
button{
max-width: 50%;
font-family: 'Orbitron',sans-serif;
border: none;
border-radius: 3em;
background-color: #e71d36;
color: #fdfffc;
font-size: 1rem;
font-weight: 600;
text-align: center;
margin: 1em 16em 1em 2em;
padding: .5em 1em;
}
button:hover, select:hover{
opacity: 85%;
}
button:active, select:active{
opacity:100%;
}