forked from turingschool-examples/self-care-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (87 loc) · 1.66 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
.container {
display: grid;
grid-template-columns: auto;
align-items: center;
justify-content: center;
vertical-align: middle;
}
.container2 {
display: grid;
grid-template-columns: auto;
justify-content: space-between;
}
.radiobtn {
height: 15px;
width: 15px;
background-color: #eee;
border-radius: 50%;
font-family: 'Quicksand', sans-serif;
}
.selfcare {
width: 1000px;
padding: 20px;
font-size: 35px;
text-align: center;
margin-top: -900px;
}
.message {
width: 1000px;
padding: 20px;
font-size: 22px;
text-align: center;
margin-top: -525px;
}
.messages {
background: white;
height: 100px;
width: 700px;
padding: 20px;
font-size: 22px;
text-align: center;
margin-top: -350px;
margin-left: 150px;
border-radius: 15px
}
.mantra {
background: white;
height: 110px;
width: 1000px;
padding: 20px;
font-size: 22px;
text-align: center;
margin-top: -50px;
border-radius: 15px;
}
#mantra-text {
justify-content: center;
text-align: center;
margin-top: -75px;
font-family: 'Quicksand', sans-serif;
}
button {
width: 250px;
font-size: 25px;
padding: 5px;
background-color: #134d71;
border-radius: 15px;
margin-top: 40px;
}
.radio-inline {
font-family: 'Quicksand', sans-serif;
margin-left: 50px;
}
.radio-margin {
margin-left: 350px;
}
body {
display: flex;
margin: 550px;
background: linear-gradient(180deg, rgba(120,167,198,1) 0%, rgba(19,77,113,1) 0%, rgba(247,228,191,1) 100%);
}
h1,
h2,
button,
input {
color: white;
font-family: 'Quicksand', sans-serif;
}