-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (56 loc) · 1.34 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
/* styles.css */
body {
background-color: rgb(231, 254, 252);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
h1 {
font-size: medium;
font-weight: normal;
background-color: black;
color: white;
display: inline-block;
}
h2 {
font-size: small;
font-weight: normal;
font-style: italic;
}
.alles {
text-align: center;
}
#output {
background-color : rgb(255, 245, 202);
white-space: pre;
border: 1px solid black;
font-size: small;
font-weight: lighter;
min-height: 200px;
width: 100%;
}
.beautifulbutton {
padding: 10px 10px;
font-size: 16px;
background-color: black;
color: white;
cursor: pointer;
border: none;
border-radius: 10px;
font-size: smaller;
font-weight: lighter;
}
.buttonhouse {
margin: 20px;
}
.credits {
padding: 5px;
text-align: right;
font-size: x-small;
color: #666; /* Grey font color */
position: relative;
bottom: 0;
width: 100%;
}