-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
86 lines (75 loc) · 1.39 KB
/
styles.css
File metadata and controls
86 lines (75 loc) · 1.39 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
* {
box-sizing: border-box;
}
body {
background-color: #002050;
font-family: sans;
color: #f1f1f1;
}
h1 {
text-align: center;
}
.container {
width: 100%;
position: relative;
min-height: 100vh;
align-items: center;
justify-content: center;
display: flex;
flex-direction: column;
}
.palindrome-div {
background-color: #f1f1f1;
color: #282130;
padding: 20px;
width: min(100vw, 450px);
min-height: 100px;
text-align: center;
border-radius: 25px;
margin: 20px;
box-shadow: 0 5px 5px #118dff;
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: center;
}
button {
background-color: #118dff;
padding: 10px;
border: none;
border-radius: 15px;
width: 30%;
cursor: pointer;
}
label {
margin-bottom: 20px;
}
.palindrome-input {
color: #282130;
height: 35px;
width: 250px;
font-size: 1.2rem;
text-align: center;
}
.description-div {
background-color: #026645;
margin: 20px;
padding: 8px;
border-radius: 15px;
width: min(100vw, 450px);
font-size: 1.3rem;
text-align: center;
}
.results-div {
min-height: 50px;
color: #000000;
padding-top: 10px;
text-align: center;
}
.hidden {
display: none;
}
.logo {
height: 30px;
margin-bottom: 20px;
}