-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.css
62 lines (62 loc) · 1002 Bytes
/
index.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
* {
margin:0;
padding:0;
box-sizing: border-box;
}
body {
font-family: 'Source Sans Pro', sans-serif;
background: white;
padding:1rem
}
button {
border:0.5px solid gray;
background: rgb(97, 199, 97);
color:white;
font-size: 1.5rem;
padding:0.5rem;
border-radius: 5px;
cursor: pointer;
}
#class-b {
background: rgb(189, 91, 91);
}
.fa {
padding-right: 0.2rem;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.messages {
background: white;
border:1px solid gray;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.74);
border-radius: 10px;
padding:0.5rem;
}
h2 {
text-align: center;
font-size: 2rem;
}
h3 {
font-size: 20px;
}
ul {
list-style: none;
margin-top: 5px;
}
li {
margin-bottom: 4px;
font-size: 17px;
}
p {
text-align: center;
color:rgb(80, 168, 80);
}
video {
margin:2rem 0rem;
width:400px;
height:auto;
}