-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (56 loc) · 1023 Bytes
/
Copy pathstyle.css
File metadata and controls
60 lines (56 loc) · 1023 Bytes
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
body {
margin: 0;
padding: 0;
color: white;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 400%;
background-color: rgb(134, 8, 8);
}
h1 {
font-size: 100%;
}
.container {
margin-top: 10%;
margin-left: 20%;
margin-right: 20%;
display: flex;
border: 5px solid rgb(255, 255, 255);
}
.all-text {
margin-left: auto;
margin-right: auto;
display: inline-block;
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
}
.age {
padding: 20px 10px;
width: 50%;
background-color: rgba(238, 238, 238, 0.6);
border: none;
border-color: white;
}
.age:hover {
background-color: rgb(255, 255, 255);
}
.btn {
margin: 5px;
padding: 20px 20px;
font-size: 40%;
font-weight: 600;
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.3);
color: white;
}
.btn:hover {
background-color: rgba(255, 255, 255, 0.6);
color: rgb(0, 0, 0);
width: 30%;
}
.result{
font-size: 50%;
font-style: italic;
border: none;
color: rgb(255, 255, 255);
}