-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
80 lines (66 loc) · 1.36 KB
/
Copy pathcss.css
File metadata and controls
80 lines (66 loc) · 1.36 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
p.red {
color: #ff8080;
}
p.green {
color: #80ff80;
}
p.blue {
color: #8080ff;
}
body {
display: flex; /* Enables flexbox for the body */
flex-direction: column; /* Align items in a column */
align-items: center; /* Center items horizontally */
min-height: 100vh; /* Make the body take up the full viewport height */
margin: 0; /* Remove default margins */
text-align: center; /* Center-align text */
font-family: Arial, sans-serif; /* Optional: Apply a clean font */
background-color: #000000;
color: #FFF
}
div.settings {
padding-top: 80px;
padding-bottom: 25px;
}
div.input {
padding-top: 25px;
}
div.input input#input {
width: 300px;
height: 30px;
text-align: center;
border-color: #FFF;
background-color: #000;
color: #FFF;
border-radius: 10px;
}
input#gen {
background-color: #80ff80;
}
input#gen:hover {
background-color: #C0FFC0;
}
input#solve {
background-color: #A080DA;
}
input#solve:hover {
background-color: #F0C0FF;
}
input.button {
color: #000;
padding: 5px 20px;
border-radius: 14px;
cursor: pointer;
}
body hr {
height: 1px;
width: 50%;
}
p hr {
height: 1px;
width: 720px;
}
h1#relations {
font-family: 'Times New Roman', Times, serif;
font-size: 100px;
}