-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
98 lines (81 loc) · 1.71 KB
/
styles.css
File metadata and controls
98 lines (81 loc) · 1.71 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
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
body {
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url("img.jpg");
}
.instructions {
text-align: left;
position:absolute; left: 70px;
padding-top: 0rem;
flex-direction: column;
justify-content: flex-start;
height: 50%;
border-radius: 20px;
}
.greetings {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.textbox {
display: flex;
}
.name-text {
display: flex;
position: relative;
padding-top: 2rem;
flex-direction: column;
justify-content: flex-start;
align-items: center;
height: 100%;
}
.name-text, .numberOfGreetings, .radioGroup {
padding: 15px;
border-radius: 20px;
background: white;
color: black;
}
.radioGroup {
margin-top: 5px;
margin-bottom: 5px;
background: rgb(30, 170, 213);
}
.radioGroup > * {
display: inline-block;
background: rgba(240, 136, 9, 0.951);
padding: 10px;
border-radius: 5px;
color: rgb(245, 248, 249);
}
.text-answer {
display: flex;
justify-content: center;
align-items: center;
min-height: 30px;
background: white;
color: black;
border-radius: 5px;
}
.buttons {
display: flex;
flex-direction: column;
}
.buttons > * {
margin-top: 6px;
text-transform: uppercase;
background:rgba(240, 136, 9, 0.951);
align-self: center;
padding: 10px;
outline: #1fa0b1;
border: none;
cursor: pointer;
color: #eee;
border-radius: 1rem;
width: 20rem;
}