-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (94 loc) · 1.68 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
113
114
115
116
117
118
119
120
121
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #1E1E1E;
color: white;
}
h1{
font-family: 'Inter', sans-serif;
font-weight: 800;
font-size: 48px;
line-height: 80px;
}
header{
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 48px;
position: fixed;
background-color: #1E1E1E;
}
button{
border: 1px solid #8B5CF6;
border-radius: 8px;
padding: 16px 24px;
background-color: transparent;
display: flex;
align-items: center;
gap: 12px;
color: #fff;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 16px;
line-height: 125%;
}
form{
display: flex;
width: fit-content;
padding: 182px 48px 48px;
}
.habits{
display: flex;
flex-direction: column;
gap: 24px;
margin-top: 75px;
}
.habit{
width: 40px;
height: 64px;
font-size: 32px;
line-height: 64px;
display: flex;
align-items: center;
justify-content: center;
}
.days{
display: flex;
margin-left: 32px;
gap: 48px;
}
.day{
display: flex;
flex-direction: column;
gap: 24px;
}
.day div{
margin-bottom: 24px;
color: #A1A1AA;
font-family: 'Roboto Mono', monospace;
font-size: 20px;
line-height: 125%;
text-align: center;
}
input{
appearance: none;
-webkit-appearance: none;
width: 64px;
height: 64px;
border: 2px solid #27272A;
border-radius: 8px;
}
input:checked{
background: #8B5CF6;
border: 2px solid #A78BFA;
border-radius: 8px;
}
@media (max-width: 570px){
button div{
display: none;
}
}