-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (62 loc) · 1.34 KB
/
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
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
html{
box-sizing: border-box;
}
body{
margin:0;
background:#45badd;
}
.container{
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: url('./robot.gif');
background-size: contain;
background-position: left center;
background-repeat: no-repeat;
}
.button{
width: 200px;
height: 30px;
background: pink;
outline: none;
border-color: red;
border-radius:5px;
margin:5px;
box-shadow: 0px 1.5px 4px 2px blue;
}
button:hover{
filter: brightness(95%);
}
button:active{
transform: scale(0.98);
}
button:disabled{
cursor: default;
filter:brightness(30%);
}
.container #para{
display: flex;
justify-content: center;
align-items: center;
width: 300px;
/* height:20px; */
margin-bottom: 20px;
border: 10px solid red;
border-color: rgb(78, 14, 138);
background:white;
justify-content: center;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 50px;
color:rgb(3, 59, 7)
}
@media screen and (max-width:1000px){
.container{
background-position: center center;
}
.button{
box-shadow:0px 1.5px 4px 2px red; ;
}
}