-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (84 loc) · 1.64 KB
/
style.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
html,
body {
height: 105%;
margin: 0;
}
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #282c34;
color: white;
}
.container {
text-align: center;
width: 80%;
max-width: 600px;
flex: 1;
/* Allow container to take available space */
}
h1 {
margin-bottom: 20px;
}
.background-display {
width: 100%;
height: 200px;
border: 2px solid white;
margin-bottom: 20px;
border-radius: 10px;
transition: background 0.5s;
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: #61dafb;
border: none;
border-radius: 5px;
cursor: pointer;
color: #282c34;
margin-bottom: 20px;
}
button:hover {
background-color: #21a1f1;
}
.css-code {
text-align: left;
}
textarea {
width: 100%;
height: 100px;
font-family: monospace;
font-size: 14px;
padding: 10px;
border-radius: 5px;
border: 2px solid white;
background-color: #333;
color: white;
}
footer {
background-color: #282c34;
color: white;
text-align: center;
padding: 10px;
position: relative;
width: 100%;
/* box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); */
}
footer-content {
max-height: 100px;
/* Adjust height as needed */
overflow-y: auto;
/* Enable vertical scrolling */
padding: 10px;
}
footer a {
color: #ffa500;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}