blob: e11e6ebb89f8daa1d17d8efa622a431f6592f169 (
plain)
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
|
* {
background-color: #282828;
}
#root {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
display: flex;
justify-content: center;
}
#title {
color: #ebdbb2;
display: flex;
justify-content: center;
align-items: center;
border-style: solid;
text-align: center;
border-radius: 20px;
width: 640px;
height: 64px;
}
#id-form {
color: #ebdbb2;
border-style: solid;
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
padding: 10px;
border-radius: 20px;
}
#btn1 {
color: #ebdbb2;
background-color: #689d6a;
height: 48px;
width: 88px;
font-size: 24px;
border-radius: 20px;
border-color: #ebdbb2;
}
#btn1:hover {
background-color: #83a598;
cursor: pointer;
}
#id-label {
font-size: 24px;
height: 48px;
}
#inp {
color: #ebdbb2;
border-color: #ebdbb2;
border-radius: 10px;
font-size: 24px;
}
|