-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (85 loc) · 1.54 KB
/
style.css
File metadata and controls
94 lines (85 loc) · 1.54 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body{
font-family: "Inter", sans-serif;
background-color:#f5f5f5;
color: #313d44;
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
p,
h1,
h2{
margin: 0;
}
.container{
width: 100%;
max-width: 75%;
margin: 0 auto;
padding: 2rem;
text-align: center;
background-color: #FFFFFF;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
border-radius: .5rem;
}
.grid{
display: grid;
grid-template-columns: 1;
gap: 1rem;
}
@media (min-width: 750px){
.grid{
grid-template-columns: 3fr 1fr;
}
.container{
max-width: 80%;
}
}
.tittle{
margin: 0;
margin-bottom: 1rem;
}
input[type=text]{
padding: 1rem;
font-size: 1rem;
background-color: #f5f5f5;
border-radius: .5em;
border: none;
color: #333333;
}
button{
padding: 1rem 3rem;
background-color: #0077C2;
border: none;
border-radius: .5rem;
font-size: 1rem;
color: #FFFFFF;
transition:all 0.4s ease;
}
button:hover{
background-color: #00619a;
}
#responseData{
margin-top: 1rem;
font-weight: 300;
font-size: 1.3rem;
background-color: #0077C2;
color: #FFFFFF;
}
#responseData h2{
font-size: 3rem;
}
#responseData p:nth-child(2){
font-size: 5rem;
font-weight: 800;
}
#responseData p:nth-child(6){
font-size: 1.5rem;
font-weight: 600;
}
#responseData img{
width: 9rem;
}