-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfont.css
56 lines (54 loc) · 1.06 KB
/
font.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
body {
display: flex;
/* flex-direction: column; */
align-items: center;
justify-content: center;
min-height: 100px;
background-color: rgb(13, 76, 99);
}
#container {
padding-top: 100px;
display: flex;
justify-content: center;
gap: 5px;
}
#result {
background-color: rgb(151, 155, 151);
font-size: xx-large;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#data {
width: 400px;
height: 30px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 50px;
text-align: center;
font-size: large;
}
div {
width: 700px;
height: 500px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#button {
display: inline-block;
color: rgb(0, 0, 0);
background: rgb(255, 255, 255);
font-size: medium;
padding: 10px 35px;
border-radius: 10px;
transition: ease 0.5s;
}
#button:hover {
transform: scale(1.2);
background-color: rgb(203, 190, 190);
}