forked from lisazhao30/TechNova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsophiestyle.css
109 lines (93 loc) · 1.52 KB
/
sophiestyle.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
* {
margin: 0;
padding: 0;
}
body {
width: 100%;
display: flex;
justify-content: center;
margin-top: 150px; /* align content would't work :| */
}
.yellow-box {
background-color: #fff495;
height: 300px;
}
.blue-box {
background-color: #8cd8f0;
height: 400px;
}
.yellow-box,
.blue-box {
width: 500px;
border-radius: 50px;
display: flex;
justify-content: center;
align-content: center;
}
form {
display: flex;
justify-content: center;
align-content: center;
justify-items: center;
align-items: center;
flex-direction: column;
}
input,
button {
border: none;
border-radius: 50px;
padding: 10px;
background-color: white;
}
#submit:hover {
cursor: pointer;
}
button:hover {
cursor: pointer;
}
.back {
position: absolute;
left: 100px;
bottom: 100px; /* i feel like this kinda doesn't look good */
}
.purple-box {
display: flex;
border-radius: 50px;
background-color: #b69cec;
justify-content: center;
align-content: center;
justify-items: center;
align-items: center;
flex-direction: column;
height: 200px;
width: 500px;
}
.blob {
height: 500px;
position: absolute;
z-index: -1;
}
#pinkblob {
right: 0;
top: 0;
}
#yellowblob {
bottom: 0;
left: 0;
}
#blueblob {
right: 50px;
bottom: 40px;
}
#purpleblob {
left: 0;
bottom: 0;
}
#pronoun-box {
background-color: white;
padding: 5px 10px;
border-radius: 50px;
color: grey;
font-size: 13px;
font-family: arial, sans-serif;
} /* not sure how to change the colour of the actual drop-down list*/