styles.css
804 Bytes
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
@import url(https://fonts.googleapis.com/css?family=Roboto);
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}
#container {
border: 1px solid rgb(37, 37, 37);
box-shadow: 3px 3px 5px rgb(129, 129, 129);
margin: 20px;
}
.toolbar {
background-color: rgb(82, 82, 82);
padding: 10px;
color: #fff;
}
button {
height: 50px;
width: 100px;
background-color: #5cb8ff;
border: 1px solid #4f90ff;
display: inline-block;
cursor: pointer;
color: #ffffff;
font-size: 17px;
}
button:hover {
background-color: #2688ff;
}
button:active {
background-color: #1a64be;
}
#title {
margin-left: 2rem;
font-size: 1.8em;
}
#author {
margin-left: 20px;
margin-bottom: 20px;
color: rgb(65, 72, 77);
font-size: 0.7em;
}