-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (74 loc) · 2.04 KB
/
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
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
body {
font-family: Arial, sans-serif;
font-size: calc(15px + 0.390625vw);
color: #333;
background-color: #f5f5f5;
width: 50%;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
}
.quote-container {
margin-bottom: 20px;
}
.quote {
font-size: calc(20px + 0.390625vw);
font-weight: bold;
margin-bottom: 10px;
}
.author {
font-size: calc(15px + 0.390625vw);
font-style: italic;
text-align: right;
margin-bottom: 30px;
}
.btn {
background: #121212;
background-image: -webkit-linear-gradient(top, #121212, #000000);
background-image: -moz-linear-gradient(top, #121212, #000000);
background-image: -ms-linear-gradient(top, #121212, #000000);
background-image: -o-linear-gradient(top, #121212, #000000);
background-image: linear-gradient(to bottom, #121212, #000000);
-webkit-border-radius: 31;
-moz-border-radius: 31;
border-radius: 31px;
font-family: Arial;
color: #ffffff;
font-size: calc(12px + 0.390625vw);
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.btn:hover {
background: #292929;
background-image: -webkit-linear-gradient(top, #292929, #525252);
background-image: -moz-linear-gradient(top, #292929, #525252);
background-image: -ms-linear-gradient(top, #292929, #525252);
background-image: -o-linear-gradient(top, #292929, #525252);
background-image: linear-gradient(to bottom, #292929, #525252);
text-decoration: none;
cursor: pointer;
}
.check{
font-family: Arial;
font-size: calc(12px + 0.390625vw);
margin-top: 30px;
}
.copyright{
position: absolute;
bottom: 0;
left: 0;
font-family: Arial;
font-size: calc(10px + 0.390625vw);
margin: 20px;
}
.contact{
position: absolute;
bottom: 0;
right: 0;
font-family: Arial;
font-size: calc(10px + 0.390625vw);
margin: 20px;
}