-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (79 loc) · 1.8 KB
/
styles.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
body{
background-color:#474747 ;
font-family:sans-serif;
text-align:center;
display:flex;
flex-direction:column;
}
.form{
display:flex;
flex-direction:column;
gap:20px;
}
#birthdate{
background-color: rgb(252, 252, 253);
font-size:20px;
width:fit-content;
margin-left:auto;
margin-right: auto;
font-weight: 800;
color:rgb(10, 10, 10);
border-radius: 9px;
}
.btn{
width:fit-content;
margin-left:auto;
margin-right: auto;
margin-top:20px;
font-size:15px;
border-radius:5px;
background-color: rgb(20, 22, 26);
color:beige;
transition: all linear 0.3s 0.1s;
}
.content{
margin-left:auto;
margin-right: auto;
margin-top:100px;
width:450px;
background-color: rgb(0, 0, 0);
border-radius: 25px;
box-shadow: 0px 0px 23px;
color:white;
text-shadow:0px 0px 10px white;
}
@media(max-width:600px){
body{
background-color:#474747;
}
.content{
font-size:0.5rem;
width:200px;
padding:40px;
}
#birthdate{
font-size:16px;
width:fit-content;
margin-left:auto;
margin-right: auto
}
}
@media(max-width:300px){
body{
background-color:#474747;
}
.content{
width:150px;
padding:30px;
}
#birthdate{
background-color: rgb(252, 252, 253);
font-size:14px;
width:fit-content;
margin-left:auto;
margin-right: auto;
font-weight: 600;
color:rgb(10, 10, 10);
border-radius: 9px;
}
}