-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
141 lines (121 loc) · 2.22 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
130
131
132
133
134
135
136
137
138
139
140
141
body {
background-color: rgb(13,17,23);
}
header {
height: 12em;
}
#btns button {
background-color:rgb(81, 50, 255);
border: 2.3px solid white;
border-radius: 8px;
color: white;
}
button:hover {
cursor: pointer;
transform: scale(1.05);
}
#section-1 {
display: flex;
position: relative;
height: 20em;
width: auto;
justify-content: center;
}
#section-1-wrapper {
display: flex;
flex-direction: row;
width: 1000px;
}
#one, #two, #three { /* ONE AND TWO ARE EMPTY DIVS*/
flex: 1 1 0%;
font-family: 'Mulish', sans-serif;
}
#two {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 5px;
}
#zero, #four {
flex: 1 1 0%;
}
#one, #three {
display: flex;
flex-direction: column;
justify-content: space-between;
text-align: center;
background-image: linear-gradient(to left, rgb(0, 247, 255), rgb(103, 255, 184) );
border-radius: 15px;
}
#one h2, #three h2{
height: 40px;
width: auto;
margin-top: 0;
color: rgb(81, 50, 255);
font-family: 'Mulish', sans-serif;
}
#two h2 {
position: relative;
height: 10%;
top: 4em;
color: white;
}
#btns {
position: relative;
display: flex;
margin: auto;
height: 200px;
width: 500px;
justify-content: space-around;
margin-top: 2%;
}
#one h1, #three h1{
position: relative;
height: 1.1em;
width: auto;
margin-top: 50px;
font-size: 12em;
font-family: 'Mulish', sans-serif;
font-weight: bold;
color:rgb(0, 68, 253);
bottom: 30px;
}
#two {
display: flex;
text-align: center;
}
#one, #three {
border: 4px solid rgb(255, 255, 255);
}
.selectBtn {
height: 100px;
width: 150px;
}
footer {
color: white;
font-weight: bold;
font-family: 'Mulish', sans-serif;
position: absolute;
bottom: 0;
letter-spacing: 2px;
}
#screen {
position: absolute;
top: 0;
left: 0;
height: 100vh;
width: 100%;
text-align: center;
}
#screen button {
background-color:rgb(81, 50, 255);
border: 2.3px solid white;
border-radius: 8px;
color: white;
height: 40px;
width: 80px;
}
#resetBtn {
width: auto;
margin-top: 35em;
}