This repository has been archived by the owner on Jun 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
84 lines (74 loc) · 1.5 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
margin: 0px;
height:100vh;
background-image: url("blue_background.jpg");
background-size: cover;
font-family: "Roboto";
color: black;
display: flex;
flex-direction: column;
align-items:center;
justify-content: center;
}
a {
text-decoration: none;
color: black;
}
#main{
display: flex;
flex-direction: column;
align-items:center;
justify-content: center;
}
#display {
width: 80vw;
height: 40vh;
display: flex;
flex-direction: row;
align-items:center;
justify-content: center;
}
#container {
padding: 30px;
font-size: 30px;
}
.title {
text-align: center;
display: inline;
font-size: 75px;
color: white;
justify-content: center;
}
.button{
text-align: center;
}
button {
border: 1px;
border-style: solid;
border-color: grey;
// background-color: #99C6FD;
background-color: white;
// color: white;
text-align: center;
transition: 0.25s;
padding: 6px;
// width: 70px;
// border-radius: 25px;
width: 500px;
cursor: pointer;
font-size: 15px;
// padding: 12px 20px;
margin: 20px 0;
// display: inline-block;
// border: 2px solid #99C6FD;
// box-sizing: border-box;
/* TODO: Use the padding property to give more space around the text */
/* TODO: Use the border-radius property to make the button rounded */
}
button:hover {
/* TODO: Add whatever you think is cool when you hover over the button! */
transform: scale(1.1);
text-decoration: underline;
color: black;
// background-color: #ddd;
}