-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (58 loc) · 1.11 KB
/
style.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
* {
background-color: purple;
color: white;
font-family: Geneva, Verdana, sans-serif;
letter-spacing: 1px;
text-align: center;
}
h1 {
letter-spacing: 3px;
}
.container {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
margin: auto;
width: 300px;
}
label {
font-size: larger;
font-weight: bolder;
padding: 5%;
}
input {
color: black;
background-color: white;
width: 40px;
height: 20px;
}
select {
color: black;
background-color: white;
width: 100px;
height: 20px;
}
button {
color: #fff;
font-size: 10px;
font-weight: bold;
background-color: violet;
border-radius: 50%;
padding: 2px 4px;
cursor: pointer;
letter-spacing: 0.2em;
margin: 35px 5px 35px 5px;
width: 80px;
height: 80px;
text-align: center;
}
.container2 {
color: black;
background-color: purple;
display: flex;
flex-direction: column;
justify-content: center;
margin: auto;
width: 300px;
}