-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyles.css
63 lines (55 loc) · 1.02 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
body {
background-color: #e6e6e6;
font-family: 'Courier New', Courier, monospace;
color: #333333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.stApp {
max-width: 800px;
padding-top: 2em;
padding-bottom: 2em;
}
h1 {
font-size: 2.5rem;
color: #ffcc00;
}
h2 {
font-size: 2rem;
color: #ffcc00;
}
p {
font-size: 1.2rem;
line-height: 1.5;
}
button {
background-color: #ffcc00;
color: #333333;
padding: 0.5em 1em;
border: none;
border-radius: 0.2em;
font-size: 1.2rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #ffd700;
}
input[type="date"] {
background-color: #fff;
color: #333333;
padding: 0.5em 1em;
border: 1px solid #999999;
border-radius: 0.2em;
font-size: 1.2rem;
}
textarea {
background-color: #fff;
color: #333333;
padding: 0.5em 1em;
border: 1px solid #999999;
border-radius: 0.2em;
font-size: 1.2rem;
}