-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (49 loc) · 940 Bytes
/
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
.image {
margin-top: 20px;
width: 395px;
height: 75px;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.head {
font-family: 'IBM Plex Mono', monospace;
color: rgb(23, 49, 128);
font-size: 200%;
font-weight: bolder;
text-align: center;
}
.button {
font-family: 'IBM Plex Mono', monospace;
font-size: 18px;
font-weight: bolder;
border: 5px solid rgba(67, 45, 154, 0.858);
border-radius: 60px;
width: 90px;
margin: -2px;
padding: 25px;
cursor: pointer;
color: #100b58;
margin-top: 8px;
}
.button:hover {
background-color: #afdde3;
}
.input {
font-size: 20px;
width: 300px;
margin: 25px;
height: 30px;
border: 3px solid rgb(73, 43, 178);
border-radius: 5px;
text-align: center;
}
.equal {
width: 190px;
}
body {
background-color: rgb(160, 225, 215);
}