-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (100 loc) · 2.14 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
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
/* *{
padding: 0;
margin: 0;
background-color: #ae937b;
}
.wrapper{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.regForm{
display: flex;
flex-direction: column;
width: 50%;
gap: 10px;
}
html, body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 400;
min-height: 100vh;
margin: 0;
}
body {
display: flex;
justify-content: center;
}
.wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* background-color: black;
} */
/*
h1 {
margin: 0;
padding: 1rem;
}
.registerForm {
display: flex;
flex-direction: column;
gap: 15px;
width: clamp(340px, 80%, 410px);
}
.registerForm input[type="text"], .registerForm input[type="email"], .registerForm input[type="password"]{
font-size: 1.5rem;
padding: 0.2em 0.5em;
border: 1px solid #44444444;
border-radius: 6px;
filter: drop-shadow(0 0 2px #44444444);
outline: none;
}
.registerForm input[type="submit"] {
background-color: #1a73e8;
color: white;
font-size: 1.5rem;
padding: 0.4em;
border: 1px solid #1a73e8;
border-radius: 5px;
}
.registerForm input[type="submit"]:hover, .registerForm input[type="submit"]:focus {
transform: scale(1.05);
transition: all 0.05 ease-out;
}
#google {
position: relative;
border-top: 100px solid #EA4335;
border-right: 100px solid #4285F4;
border-bottom: 100px solid #34A853;
border-left: 100px solid #FBBC05;
border-radius: 50%;
background-color: #FFFFFF;
width: 300px;
height: 300px;
padding: 0;
margin: 10vh auto 0;
}
#google::before {
content: "";
z-index: 100;
position: absolute;
top: 50%;
right: -95px;
transform: translateY(-50%);
width: 245px;
height: 100px;
background: #4285F4;
}
#google::after {
content: "";
z-index: 101;
position: absolute;
border-top: 200px solid transparent;
border-right: 200px solid #FFFFFF;
top: -100px;
right: -100px;
width: 0;
height: 0;
} */