-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (70 loc) · 1.22 KB
/
Copy pathstyle.css
File metadata and controls
70 lines (70 loc) · 1.22 KB
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
body {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.jumbotron {
background: linear-gradient(to bottom, blue, white);
width: 100%;
height: 100vh;
}
/* set the size of the logo */
.logo {
width: 75px;
height: 75px;
}
.featured {
color: #fff;
}
/* create space between the title and the logo */
.featured h1 {
padding-top: 60px;
}
.featured .btn-default {
font-weight: bold;
color: white;
background-color: rgba(145, 82, 50, 0.5);
border-radius: 10px;
margin-top: 20px;
width: 160px;
margin-right: 20px;
transition: all 0.2s ease;
}
.featured .btn-default:hover {
background-color: rgba(145, 82, 58);
}
.trial{
padding:20px 0px 40px 0px;
color: black;
font-weight: bold;
}
.footer{
margin-top:20px;
padding:20px;
background-color:#a6aeac;
}
.footer p{
text-align:center;
font-size:20px;
}
/* Add styling for devices 480px */
@media (max-width: 480px) {
.jumbotron {
height: 410px;
margin: 0px;
}
.logo {
width: 40px;
height: 40px;
}
.featured h1 {
padding-top: 10px;
}
.featured p,
.featured a {
font-size: 17px;
}
.featured {
text-align: center;
}
}