-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
118 lines (110 loc) · 2.08 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
background-color: #121212;
color: #ffffff;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px 20px 0 20px;
min-height: 100vh;
}
.container {
text-align: center;
background-color: #1e1e1e;
padding: 40px;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
max-width: 500px;
width: 90%;
margin: 20px auto; /* Add top margin */
}
.input-group {
margin: 20px 0;
display: flex;
flex-direction: column;
align-items: center;
}
.input-group label {
margin-bottom: 10px;
font-size: 1.1em;
}
input[type="text"] {
padding: 12px;
border: none;
border-radius: 8px;
margin: 5px 0;
width: 80%;
background-color: #2d2d2d;
color: white;
text-align: center;
}
input[type="submit"] {
padding: 12px 30px;
border: none;
border-radius: 8px;
background-color: #6200ea;
color: #ffffff;
cursor: pointer;
font-size: 1.1em;
margin-top: 20px;
}
input[type="submit"]:hover {
background-color: #3700b3;
}
h1 {
margin: 0 0 30px 0;
font-size: 2em;
}
.result {
margin-top: 30px;
padding: 15px;
background-color: #2d2d2d;
border-radius: 8px;
}
footer {
position: relative;
background-color: #1e1e1e;
padding: 10px;
text-align: center;
margin-top: auto; /* Push footer to bottom */
}
.info-section {
margin-top: 30px;
padding: 20px;
background-color: #2d2d2d;
border-radius: 8px;
text-align: left;
overflow-y: visible; /* Disable scrollbar */
}
.info-section h2 {
font-size: 1.5em;
margin-bottom: 15px;
}
.info-section h3 {
font-size: 1.2em;
margin: 15px 0 10px;
margin-top: 20px;
color: #6200ea;
}
.info-section ul {
margin: 10px 0;
padding-left: 20px;
list-style-type: none;
padding-left: 10px;
}
.info-section li {
margin: 8px 0;
line-height: 1.4;
}
.info-section strong {
color: #bb86fc;
}
.attribution {
font-size: 0.9em;
margin-top: 15px;
text-align: right;
opacity: 0.8;
}
/* Add these new styles */
html {
height: 100%;
overflow-y: auto;
}