-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (100 loc) · 1.86 KB
/
Copy pathstyles.css
File metadata and controls
111 lines (100 loc) · 1.86 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
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
body {
font-family: 'Open Sans', sans-serif;
font-size: 3vh;
background-color: #ffffff;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
text-align: center;
padding: 10vh;
height: 40vh;
}
.title {
font-size: 5vh;
font-weight: bold;
text-align: center;
text-decoration: solid;
}
.start-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 5vh;
height: 50vh;
width: 45vh;
}
.input-container {
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
gap: 5vh;
height: 50vh;
width: 45vh;
}
.input-text {
text-align: center;
width: 90%;
padding: 5%;
border-radius: 78px;
border: black;
background-color: rgb(191 111 219 / 64%);
}
.input-button {
width: 30%;
height: 8vh;
padding: 30px;
border-radius: 78px;
border: black;
background-color: rgb(5, 126, 85);
}
button {
font-size: 3vh;
width: 75%;
height: 35%;
border-radius: 78px;
font-weight: bold;
text-align: center;
text-decoration: none;
background-color: #4c77af;
color: #FFFFFF;
border: none;
transition: background-color 0.3s ease;
cursor: pointer;
}
button:hover, button:active {
background-color: #582985;
}
.button-container{
gap: 5vh;
height: 50vh;
width: 45vh;
display: flex;
justify-content: center;
}
label {
text-align: center;
}
input {
border-radius: 4px;
padding: 8px;
font-size: 5vh;
color: #333;
width: 5em;
text-align: center;
margin-top: 3vh;
}
.dark-mode {
background-color: #333;
color: #f9f9f9;
}