-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (76 loc) · 1.39 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (76 loc) · 1.39 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: url(./assets/bg.jpg) center center fixed;
background-size: cover;
}
.container {
/* border: 1px solid red; */
margin: 9% auto;
width: 35%;
height: 350px;
display: flex;
flex-direction: column;
align-items: center;
background-color: rgba(136, 137, 138, 0.815);
border-radius: 20px;
border: none;
box-shadow: 0 0 10px rgba(245, 245, 234, 0.733);
}
h1 {
color: rgb(43, 43, 43);
margin: 18px auto;
cursor: pointer;
}
p {
font-size:22px;
padding: 9px 10px;
/* border: 1px solid black; */
height: 96px;
}
.circle {
border-top: 1px solid black;
padding-top: 4px;
width: 100%;
display: flex;
justify-content: end;
padding-right: 8px;
gap: 5px;
}
#question_mark {
border: 1px solid black;
border-radius: 100px;
width: 18px;
height: 17px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(207, 205, 205);
cursor: pointer;
}
.hint {
display: none;
}
.box {
margin: 20px;
width: 100%;
}
#generate {
margin-left: 10px;
height: 40px;
width: 110px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 17px;
border-radius: 10px;
border: none;
background: rgb(121, 219, 28);
cursor: pointer;
box-shadow: 0 0 2px rgba(214, 199, 30, 0.733);
transition: 0.4s;
}
#generate:hover {
transform: scale(90%);
}