-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
125 lines (113 loc) · 2.19 KB
/
styles.css
File metadata and controls
125 lines (113 loc) · 2.19 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html{
margin: 0;
padding: 0;
}
/* hsl(165, 95%, 47%); */
body{
background-color: hsl(0, 0%, 13%);
font-size: 15px;
margin: 0;
padding: 0;
top: 0;
/* display: flex; */
justify-content: center;
align-items: center;
height: 100vh;
}
h1{
margin-top: 1%;
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
color: white;
}
a{
color: #0844eb;
}
#quote-id {
color: #77db74;
font-size: 1.2rem;
}
#container {
margin: 10% 10%;
padding: 10px 20px;
display: flex;
background-color: #3f3b3b;
color: #ffffff;
font-family: 'Courier New', Courier, monospace;
border-radius: 8px;
flex-direction: column;
max-width: 100%;
justify-content: center;
align-items: center;
}
#quote{
/* padding: 10px 25px; */
color: #f1f1f2;
font-weight: 700;
font-size: 1.6rem;
margin-top: 1%;
text-align: center;
}
.line1{
width: 20%;
margin-bottom: 1%;
}
#get-quote{
margin: 1% 30%;
padding: 10px 15px;
border: none;
outline: none;
border-radius: 10px;
bottom: 0;
margin-bottom: 0%;
background-color: #129e0d;
color: white;
font-weight: 700;
font-size: 1.2rem;
cursor: pointer;
}
#get-quote:hover{
background-color: #58b654;
}
#share-btn{
width: 50px;
margin-top: -25%;
margin-left: 47%;
cursor: pointer;
}
/* @media screen and (max-width: 480px){
#container {
margin: 25% 0%;
padding: 10px 20px;
display: flex;
background-color: #3f3b3b;
color: #ffffff;
font-family: 'Courier New', Courier, monospace;
border-radius: 8px;
flex-direction: column;
max-width: 100%;
height: 30vh;
justify-content: center;
align-items: center;
}
#get-quote{
margin: 1% 30%;
padding: 10px 15px;
font-weight: 700;
font-size: 0.8rem;
width: 70%;
}
#quote{
padding: 8px 18px;
color: #f1f1f2;
font-weight: 700;
font-size: 1rem;
margin-top: 1%;
text-align: center;
}
} */