forked from turingschool-examples/self-care-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
116 lines (100 loc) · 2.03 KB
/
styles.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
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
body {
background: linear-gradient(#134d71, #78a7c6, #f7e4bf, #fff);
min-height: 100vh;
display: flex;
justify-content: space-evenly;
flex-direction: column;
}
h1 {
font-family: 'Quicksand', sans-serif;
color: white;
text-align: center;
margin: 15;
font-size: 30px;
}
h2 {
font-family: 'Quicksand', sans-serif;
color: white;
text-align: center;
position: relative;
margin-top: 75px;
margin-bottom: 25px;
}
/* Section 1 */
.section {
margin: 15px auto auto auto;
background-color: white;
height: 150px;
width: 500px;
border-radius: 25px;
text-align: center;
align-items: center;
font-size: 20px;
justify-content: space-around;
display: flex;
}
.radio1 {
display: flex;
}
.button1 {
flex-wrap: wrap;
margin-left: 5px;
}
.button2 {
flex-wrap: wrap;
margin-left: 85px;
}
/* recieve message button */
.button3 {
font-family: 'Quicksand', sans-serif;
background-color: rgba(5,89,130,1);
color: white;
width: 200px;
height: 40px;
margin: 55px auto auto auto;
border-radius: 15px;
text-align: center;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 15px;
}
/* Section 2 */
.get_message {
font-family: 'Quicksand', sans-serif;
margin: 0 auto auto auto;
background-color: white;
height: 200px;
width: 700px;
border-radius: 25px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.trash {
font-family: 'Quicksand', sans-serif;
text-align: center;
align-items: center;
font-size: 20px;
justify-content: space-around;
display: flex;
}
.remove {
font-family: 'Quicksand', sans-serif;
background-color: rgba(5,89,130,1);
color: white;
border-radius: 25px;
width: 220px;
height: 50px;
margin-bottom: 155px;
font-size: 15px;
}
.svg {
height: 95px;
width: 50px;
margin: auto;
}
#meditationImage {
display: block;
}