-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
100 lines (81 loc) · 1.43 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color:rgb(160, 58, 160);
}
ul{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
margin-top: 50px;
}
li{
display: inline;
margin: 0, auto;
}
p{
text-align: center;
}
img{
width: 200px;
height: 250px;
margin: 40px;
}
a{
color: white;
padding: 10px 15px;
background-color: red;
text-decoration: none;
border-radius: 10px;
}
a:active{
background-color: rgb(255, 166, 0);
transition: .2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.head h1{
color: rgb(0, 0, 0);
background-color: rgba(143, 245, 248, 0.89);
text-align: center;
font-size: 2.5rem;
padding: 25px 35px;
}
h2{
text-align: center;
color: white;
font-size: 1em;
}
h2.status{
font-size: 2rem;
}
.score{
padding: 10px 15px;
background-color: rgba(255, 255, 255, 0.637);
display: table;
margin: 0 auto;
border-radius: 5px;
}
button{
/* position: absolute;
left: 49%; */
display: block;
margin: 0 auto;
margin-top: 20px;
padding: 10px 15px;
}
@media(max-width :900px){
img{
width: 100px;
height: 100px;
}
}
@media(max-width :660px){
.head h1{
font-size: 1.5em;
}
h2.status{
font-size: 1.5em;
}
}