-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
72 lines (63 loc) · 1.06 KB
/
style1.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
.navbar-nav a {
text-decoration-line: none;
margin: 0 10px;
color: black;
}
.container {
display: grid;
place-items: center;
}
.container .title {
font-size: 40px;
color: blueviolet;
font-weight: bold;
margin-bottom: 50px;
}
.container .privacy {
display: grid;
width: 400px;
border-radius: 10px;
border: 1px solid gray;
align-items: center;
justify-content: center;
gap: 10px 10px;
}
.container input {
display: grid;
align-self: center;
width: 350px;
height: 80px;
border: none;
}
.privacy .major {
display: flex;
align-items: center;
height: 80px;
}
.container .select {
display: grid;
width: 400px;
padding-top: 10px;
grid-template-columns: 1fr 1fr;
}
.select .signup, .select .cancel {
width: 100px;
height: 30px;
background-color: blueviolet;
color: white;
border: none;
border-radius: 5px;
}
.container .login {
width: 400px;
height: 40px;
margin-top: 10px;
background-color: blueviolet;
color: white;
border: none;
border-radius: 5px;
}
.startPage {
color: blueviolet;
margin: 8px;
}