-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (46 loc) · 916 Bytes
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
/* background-color: skyblue; */
}
html,
body {
background-color: #00DBDE;
background-image: linear-gradient(90deg, #00DBDE 0%, #FC00FF 100%);
}
.main{
text-align: center;
width: 100%;
height: 100vh;
margin-top: 35vh;
}
h3{
font-size: 25px;
font-weight: bold;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: black;
text-shadow: 5px 5px 8px rgb(250, 254, 7);
font-style: italic;
}
#speak{
padding: 5px 5px;
border-radius: 5px;
outline: none;
border: none;
color: white;
background-color: rgba(201, 227, 7, 0.429);
}
button{
padding: 5px 70px;
color: bisque;
background-color: crimson;
outline: none;
border-radius: 5px;
border: none;
font-size: 15px;
font-weight: bold;
}
button:hover{
background-color: red;
}