-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmystyle.css
More file actions
83 lines (67 loc) · 1.67 KB
/
mystyle.css
File metadata and controls
83 lines (67 loc) · 1.67 KB
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
* {
font-size: 114%;
}
body {
margin: 0;
padding: 0;
background: linear-gradient(to right, #c6ffdd, #fbd786, #f7797d);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.name-container {
background-color: rgba(255, 255, 255, 0.5); /* Set the background color with transparency */
padding: 64px;
border-radius: 50px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Add a shadow for a better visual effect */
}
input {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 20px;
font-size: inherit;
}
button {
display: inline-block;
padding: 10px 20px;
margin-right: 10px;
border: none;
border-radius: 20px;
font-size: inherit;
cursor: pointer;
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
button.login-button {
background-color: #f7797d;
color: #fff;
}
button.signup-button {
background-color: #f7797d;;
color: #fff;
}
button:hover {
background-color: #fff;
color: #f7797d;
}
.name-container2 {
background-color: rgba(255, 255, 255, 0.5); /* Set the background color with transparency */
padding: 64px;
border-radius: 50px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Add a shadow for a better visual effect */
height: 465px;
}
hr {
border: none;
border-top: 2px solid black; /* Adjust the color and thickness as needed */
width: -500px;
border-style: dashed;
}
textarea {
resize: none;
font-variant: all-petite-caps;
font-size: 30px;
}