-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
141 lines (139 loc) · 2.8 KB
/
Copy pathstyle.css
File metadata and controls
141 lines (139 loc) · 2.8 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Nunito',sans-serif;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: rgb(85, 112, 179);
color: white;
}
.container{
width: 450px;
background-color: rgb(255, 255, 255);
color:rgb(10, 26, 68);
border-radius: 7px;
padding: 15px;
box-shadow: 3px 3px rgb(35, 43, 78);
}
.container h1{
font-size: 36px;
font-weight:700;
padding: 15px 25px;
text-align: center;
border-bottom: 1px solid ;
}
.container content{
margin: 25px 40px;
padding: 15px;
}
.content .word{
margin: 10px;
font-size:28px;
text-align: center;
text-transform: uppercase;
letter-spacing: 8px;
}
.content .details{
margin: 15px 5px 10px;
text-align: center;
}
.details p{
font-size: 18px;
margin-bottom: 5px;
}
.details p b{
font-weight: 600;
}
.content input{
width: 95%;
height: 30px;
border-radius: 5px;
outline:none;
padding: 20px 16px;
margin: 15px;
border: 1px solid white;
font-size: 18px;
text-align: center;
background-color: rgb(203, 203, 213);
box-shadow: 2px 2px rgb(148, 149, 151);
}
.content .buttons{
display: flex;
justify-content: space-around;
margin-top:8px;
}
.buttons button{
border: none;
outline: none;
border-radius: 3px;
width:30%;
padding: 5px;
font-weight: 700;
}
.buttons .refresh{
background-color: rgb(59, 92, 175);
color: white;
cursor: pointer;
box-shadow: 2px 2px rgb(35, 43, 78);
}
.buttons .check{
background-color: rgb(59, 92, 175);
color: white;
cursor: pointer;
box-shadow: 2px 2px rgb(35, 43, 78);
}
.buttons .check:hover{
background-color: white;
color:rgb(59, 92, 175);
border: solid .5px rgb(59, 92, 175);
}
.buttons .refresh:hover{
background-color: white;
color:rgb(59, 92, 175);
border:solid .5px rgb(59, 92, 175) ;
}
.bt{
border: none;
outline: none;
border-radius: 50%;
width:20%;
padding: 25px;
font-weight: 700;
background-color: rgb(23, 39, 69);
color: white;
}
.start{
margin: 10px;
display: flex;
justify-content: space-around;
}
.bt:hover{
background-color: white;
color: rgb(23, 39, 69);
}
.score{
text-align: center;
padding: 8px;
}
.notification {
position: absolute;
bottom:calc(10%/2);
background-color: rgba(0, 0, 0, 0.798);
color: #fff;
padding: 14px 24px;
border-radius: 12px;
font-size: 16px;
box-shadow: 0 6px 15px rgba(0,0,0,0.2);
transition: opacity 0.4s ease;
z-index: 9999;
opacity: 0;
}
.notification.show {
opacity: 1;
}