-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (78 loc) · 1.5 KB
/
Copy pathstyle.css
File metadata and controls
93 lines (78 loc) · 1.5 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
83
84
85
86
87
88
89
90
91
92
93
body {
background-color: #cad2c5;
display: flex;
justify-content: center;
align-items: center;
margin-top: 50px;
}
#section-container{
display: flex;
flex-direction: column;
background-color: #84a98c;
padding-top: 20px;
min-width: 600px;
max-width: 800px;
height: 600px;
border: solid #2f3e46;
border-radius: 6px;
box-shadow: 5px 5px 10px 1px #2f3e46;
color: #2f3e46;
}
h1{
text-align: center;
font-size: 50px;
font-family: 'Water Brush', cursive;
}
p{
padding: 0 20px;
text-align: center;
font-size: 30px;
font-family: 'Short Stack', cursive;
}
.my-element {
display: inline-block;
margin: 0 0.5rem;
animation: bounce; /* referring directly to the animation's @keyframe declaration */
animation-duration: 2s; /* don't forget to set a duration! */
}
.form{
display: flex;
justify-content: center;
}
.guess-input{
background-color:#cad2c5;
font-family: 'Water Brush', cursive;
border-radius: 6px 0 0 6px;
border: 3px solid #cad2c5;
transition: 0.5s;
outline: 0;
}
.guess-submit{
background-color: #2f3e46;
color: #84a98c;
font-family: 'Water Brush', cursive;
width: 100px;
height: 35px;
border-radius: 0 6px 6px 0;
border-style: hidden;
text-decoration: none;
outline: 0;
}
.guess-submit:hover{
color: #2f3e46;
background-color:#cad2c5 ;
cursor: pointer;
font-weight: 700;
}
input[type=text]:focus {
border: 3px solid #2f3e46;
}
#guesses{
font-size: 20px;
}
#result{
margin: 0;
}
#hint{
margin-top: 10px;
}