-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
89 lines (79 loc) · 1.52 KB
/
index.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
83
84
85
86
87
88
89
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
background-color: rgb(31, 28, 28);
font-family: Verdana, Geneva, Tahoma, sans-serif;
overflow-x: hidden;
}
body h1 {
text-align: center;
color: aqua;
font-size: 70px;
font-weight: bold;
}
body p,
span {
font-weight: bold;
color: white;
}
.hb-inputName {
padding: 15px;
font-size: 30px;
font-weight: bold;
margin-bottom: 70px;
border: 4px solid rgb(248, 0, 0);
border-radius: 15px;
box-shadow: 0px 0px 45px rgb(255, 255, 255);
width: 80vw;
}
.hb-button {
border: 4px solid red;
background-color: red;
color: white;
padding: 20px;
font-size: 30px;
margin-bottom: 40px;
transition: all 0.8s ease;
}
.hb-button:hover {
border-radius: 100px;
background-color: white;
color: red;
}
.hb-story {
font-size: 25px;
font-weight: bold;
text-align: center;
}
.hb-card {
display: none;
margin-top: 50px;
margin-bottom: 100px;
width: 70vw;
border: 3px solid white;
padding: 40px;
border-radius: 20px;
box-shadow: 0px 0px 200px yellow;
}
.hb-open {
margin-top: 50px;
margin-bottom: 100px;
width: 70vw;
border: 3px solid white;
padding: 40px;
border-radius: 20px;
box-shadow: 0px 0px 200px yellow;
}
.hb-name {
text-transform: capitalize;
}
.hb-wrongTime {
display: none;
margin-top: 40px;
font-size: 30px;
text-align: center;
}