-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (99 loc) · 1.75 KB
/
styles.css
File metadata and controls
112 lines (99 loc) · 1.75 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
106
107
108
109
110
111
112
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
background: #222831;
height: 100vh;
padding: 15px;
}
header {
position: relative;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
color: #FFD369;
font-size: 2em;
text-align: center;
font-family: 'Press Start 2P', cursive;
}
p {
margin: 20px 0;
font-size: 22px;
text-align: justify;
color: #EEEEEE;
font-family: 'M PLUS Code Latin', sans-serif;
}
#back {
position: absolute;
top: 100px;
left: 100px;
display: flex;
align-items: center;
cursor: pointer;
display: none;
}
#back i {
color: #EEEEEE;
font-size: 26px;
transition: .2s all;
}
#back p {
margin-left: 10px;
transition: .2s all;
font-size: 18px;
}
#back:hover > p, #back:hover > i {
color: #dfb75b;
}
input {
border-radius: 5px;
width: 100%;
outline: none;
border: none;
background: #EEEEEE;
padding: 8px 16px;
font-size: 22px;
color: #222831;
font-family: 'M PLUS Code Latin', sans-serif;
}
.convert {
display: block;
margin: 10px auto;
text-align: center;
width: 200px;
background: #FFD369;
color: #222831;
font-size: 22px;
padding: 8px 16px;
border-radius: 5px;
border: none;
outline: none;
cursor: pointer;
transition: .2s all;
}
.convert:hover { background: #dfb75b; }
@media only screen and (max-width: 1200px) {
#back {
left: 40px;
top: 40px;
}
}
@media only screen and (max-width: 500px) {
.convert {
width: 100%;
}
}