-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (77 loc) · 1.88 KB
/
style.css
File metadata and controls
93 lines (77 loc) · 1.88 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300&display=swap');
body{
background: url("bg4.jpg") no-repeat center/cover;
/*background: -webkit-radial-gradient(center, #1fad83, #6935bd);*/
/*background: -moz-radial-gradient(center, #d670c0, #2c2831);
background: radial-gradient(ellipse at center, #38a02e, #4107a7);
*/}
.container{
width: 1280px;
margin: auto;
}
.quotes-container{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
}
.inner-quotes-container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 900px;
text-align: center;
min-height: 400px;
padding: 0 25px;
color: gray;
border-radius: 10px;
background-color: #474a6def;
/*border: 10px solid #36034b;*/
/*box-shadow: 0px 2px 6px 0px rgba(90, 110, 199, 0.9);*/
}
.inner-quotes-container:hover{
background-color: #5b6094ef;
}
.inner-quotes-container p{
font-size: 2rem;
color: rgb(255, 255, 255);
font-family: 'Source Code Pro', monospace;
}
.inner-quotes-container h3{
font-size: 2rem;
color: rgb(255, 255, 255);
font-family: 'Dancing Script', cursive;
}
.quote-btn{padding-top: 25px;}
.btn{
color: white;
background-color: #474a6def;
border: none;
}
.btn:hover{
background-color: #5b6094ef;
border: none;
}
.btn:active{
transform: translateY(2px);
border: none;
background-color: #474a6def;
}
.btn:enabled{
background-color: #474a6def;
color: white;
border-color: none;
}
@media(max-width:1280px){
.container{width: 95%;}
}
@media(max-width:900px){
.inner-quotes-container{width: 100%;}
}
@media(max-width:480px){
.inner-quotes-container p{font-size: 1.2rem;}
.inner-quotes-container h3{font-size: 1.5rem;}
}