-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (45 loc) · 976 Bytes
/
styles.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
*{
box-sizing: border-box;
}
body{
display: flex;
}
#container{
border: 2px solid black;
height: 300px;
margin: auto;
width: 50%;
padding: 15px;
display: inline-block;
text-align: center;
background: linear-gradient(to left, #5c6f81, #bdc3c7);
border-radius: 50px;
transition: background ease-out;
}
#title{
margin: auto;
text-align: center;
color: black;
font-family: "Edu NSW ACT Foundation", cursive;
animation: 3s infinite alternate slidein;
}
#activity-name{
text-align: center;
height: 100px;
color: black;
margin-top: 50px;
}
#btn{
margin: auto;
border-radius: 500px;
font-size: 30px;
width: 80px;
height: 50px;
text-align: center;
vertical-align: middle;
font-family: "Edu NSW ACT Foundation", cursive;
background-color: lightyellow;
}
#btn:hover{
background-color: yellow;
}