-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
39 lines (35 loc) · 927 Bytes
/
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
body {
background: #000046; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #1CB5E0, #000046); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #1CB5E0, #000046); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
font-family: 'Open Sans', sans-serif;
margin : auto;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
.content {
text-align: center;
padding:10px;
}
#btQuotes{
height:50px; width:150px;
font-size: 18px;
color:#ffffff;
background-color: #000;
border:none;
padding:5px;
border-radius: 5px;
cursor: pointer;
}
.card{
padding:15px 30px 15px 30px;
margin:40px auto;
max-width:500px;
max-height:300px;
text-align: center;
background-color: #ffffff;
border-radius: 5px;
}