forked from turingschool-examples/self-care-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
129 lines (110 loc) · 2.01 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* font-family: 'Quicksand', sans-serif;
COLORS
light-yellow - #f7e4bf;
light-blue - #78a7c6;
dark-blue - #134d71;
white - #ffffff;
black - #000000;
*/
body {
font-family: 'Quicksand', sans-serif;
text-align: center;
color: #fff;
height: max-content;
font-weight: bold;
background-attachment: fixed;
background-image: linear-gradient(#134d71, #78a7c6, #f7e4bf);
}
p {
color: #fff;
}
.box {
display: flex;
text-align: center;
border-radius: 30px;
background-color: #fff;
border-color: #fff;
color: black;
padding-left: 1vmin;
padding-right: 1vmin;
padding-top: 7.5vmin;
padding-bottom: 7.5vmin;
justify-content: space-evenly;
}
.box1 {
display: flex;
margin-left: 30%;
margin-right: 30%;
margin-bottom: 20px;
flex-direction: column;
justify-content: space-evenly;
}
.radios {
width: 300px;
display: inline-flex;
justify-content: space-evenly;
}
img {
width: 100px
}
label {
display: inline-block;
margin-bottom: 15px;
}
input {
display: inline-block;
vertical-align: top;
margin: auto;
}
#affirmationRadio {
margin-right: 50px;
}
.button {
text-align: center;
color: #fff;
background-color: #134d71;
display: flex;
margin: auto;
padding: 15px;
border-radius: 20px;
}
.page-topper {
height: auto;
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.page-topper>h1 {
height: auto;
display: inline-flex;
align-self: center;
}
.show-button {
justify-content: center;
margin-top: auto;
margin-bottom: auto;
margin-left: 1px;
margin-right: 1px;
}
.home-button{
justify-content: center;
margin-top: auto;
margin-bottom: auto;
margin-left: 1px;
margin-right: 1px;
}
.hidden {
display: none;
}
.main-page-view{
}
.fav-show-area{
justify-content: center;
flex-direction: column;
width:30em;
}
.fav-area-divider{
display: flex;
justify-content: center;
}