-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
82 lines (66 loc) · 1.17 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
body {
background-image: url(https://i.imgur.com/X6n8zAe.jpg);
}
h3 {
font-size: 20px;
}
form {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background-color: rgba(255, 255, 255, 0.774);
border-radius: 3px;
padding: 20px;
transition-duration: 0.4s;
margin: 40px;
}
#number-of-members {
margin-top: 15%;
height: 200px;
width: 300px;
display: block;
transition-duration: 0.4s;
}
#family-ages {
text-align: center;
width: 400px;
}
#results {
width: 1000px;
}
.result-labels {
margin-left: 30px;
}
input,
textarea {
border: 2px solid rgb(132, 241, 205);
text-align: center;
border-radius: 3px;
height: 30px;
margin: 10px;
}
input:disabled,
textarea {
background-color: white;
}
button {
font-size: 15px;
background-color: rgb(132, 241, 205);
border: none;
border-radius: 8px;
height: 30px;
width: 100px;
transition-duration: 0.1s;
}
button:hover {
border: 2px solid rgb(132, 241, 205);
background-color: white;
font-weight: bold;
}
#reveal-after {
display: none;
}
ol,
li
{
list-style-type: none;
margin: none;
}