-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathstyle.css
101 lines (92 loc) · 1.91 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
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
body{
background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
}
#Heading{
text-align: center;
font-size: 60px;
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 0px;
}
.progress-bar.active {
background-color: #fff;
height: 4px;
width: 50%;
margin-top: 50px;
margin-left: 24%;
animation: grow 7s linear infinite;
transform-origin: left;
}
@keyframes grow {
0% {
transform: scaleX(0);
}
}
#button-3 {
background-color: bisque;
margin-right: 25px;
}
#Color{
background-color: white;
height: 300px;
width: 300px;
margin: 10px auto;
padding-top: 20px;
border-radius: 1em;
box-shadow: 10px 10px 8px #181717;
}
#color-text{
border-radius: 1em;
text-align: center;
font-size: 23px;
width: 190px;
background-color: white;
padding: 15px;
border: 1px solid black;
display: block;
margin: 30px auto;
}
.btn{
margin-top: 20px ;
padding: 10px;
font-size: 22px;
background-color: rgb(230, 170, 215);
border-radius: 9px;
cursor: pointer;
transition: 0.3s;
box-shadow: 10px 10px 8px #181717;
}
#button-2{
background-color: bisque;
}
.button{
text-align: center;
}
.btn:hover{
background-color: yellow;
font-size: 25px;
}
@media (max-height:638px ) {
#Heading{
font-size: 30px;
}
#Color{
height: 150px;
width: 150px;
margin: 5px auto;
padding-top: 10px;
border-radius: 1em;
}
#color-text{
width: 95px;
padding: 7.5px;
margin: 15px auto;
}
}