-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
58 lines (49 loc) · 835 Bytes
/
main.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
.settings {
display: flex;
flex-direction: row;
align-content: center;
transform: translateX(-100%);
transition: transform 0.5s;
}
.settings-open.settings {
transform: none;
}
input {
padding: 5px;
font-size: 12px;
width: 150px;
height:20px;
}
button {
height: 30px;
width: 70px;
background: none;
color: #313131;
border: 1px solid #313131;
border-radius: 50px;
font-size: 12px;
}
button:hover {
border: 2.5px solid;
cursor: pointer;
}
form {
padding-top: 20px;
}
.greeting-container {
display: flex;
justify-content: center;
align-content: center;
}
.greeting {
font-family: sans-serif;
font-size: 60px;
color: #fff;
}
body {
background-color: #c670ca;
background-image: linear-gradient(45deg, #c670ca 0%, #25a5c8 52%, #20e275 90%);
}
html {
height: 100%;
}