-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCA3.css
84 lines (70 loc) · 1.54 KB
/
CA3.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
83
84
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
.container {
height: 100vh;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
background-image: linear-gradient(90deg, #161578, #b81055);
}
.app-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
color: #fff;
}
.headings-container {
padding: 0 1rem;
font-size: 30px;
}
.interaction-container {
display: flex;
align-items: normal;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 0 1rem;
}
.text-control {
padding: 0.5rem;
margin: 2rem 0;
background-color: #3f464a52;
color: #fff;
border: 1px solid #fff;
border-radius: 10px;
font-size: 30px;
}
.text-control:focus-visible {
outline: none;
}
.error-para {
color: red;
}
.btn {
padding: 0.8rem;
background-image: linear-gradient(90deg, #F4244C, #F57D4E);
border: 1px solid transparent;
border-radius: 20px;
color: #fff;
cursor: pointer;
transition: all 0.25s;
font-size: 30px;
}
.btn:hover {
padding: 1rem;
}
.main {
text-align: center;
}
.marq {
padding-top: 5px;
padding-bottom: 5px;
}