-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
52 lines (45 loc) · 1.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
body{transition: background 1s;
text-align: center;}
.box{
background-color: rgba(255, 255, 255, 0.336);
border-radius: 10px;
padding: 1%;
margin-left: 20%;
margin-right: 20%;
margin-top: 5%;
box-shadow:0 0 10px black ;
position: relative;
}
h1{
color: rgba(0, 0, 0, 0.623);
font-style: italic;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#quoteDisplay{
margin: 5%;
font-family: sans-serif;
font-size: 40px;}
@media only screen and (max-width: 900px){
#quoteDisplay{
font-size: 30px;
}}
@media only screen and (max-width: 600px){
#quoteDisplay{
font-size: 25px;
}}
button{
background-color: rgba(0, 128, 128, 0.336);
border: none;
font-size: 20px;
box-shadow:0 0 10px black ;
position: relative;
border-radius: 100px;
}
.git a{
color: #000;
}
.git{
position: fixed;
bottom: 0;
font-size: 40px;
}