-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (73 loc) · 2.15 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
* {
padding: 0px;
box-sizing: border-box;
margin: 0px;
}
.main {
min-height: 100vh;
background: rgb(174, 238, 237);
background: linear-gradient(162deg, rgba(174, 238, 237, 1) 0%, rgba(142, 148, 255, 0.9416141456582633) 100%);
padding-bottom: 50px;
}
.header {
background-color: white;
color: navy;
min-height: 50px;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Playfair Display', serif;
}
.text--section {
margin-top: 25px;
display: flex;
justify-content: center;
align-items: center;
color: navy;
background-color: white;
min-height: 150px;
border-radius: 25px;
}
.main--text--section {
padding: 0px 50px;
}
.button--main--layout {
display: flex;
justify-content: space-around;
margin-top: 25px;
}
button {
border-radius: 25px;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
outline: none;
background: rgb(15, 8, 142);
background: linear-gradient(90deg, rgba(15, 8, 142, 1) 0%, rgba(9, 9, 121, 1) 41%, rgba(0, 212, 255, 1) 100%);
}
button:active {
background-color: #2856ad;
box-shadow: 0 5px rgb(255, 255, 255);
transform: translateY(4px);
}
.province {
padding: 15px;
}
hr {
border-top: 0.25px solid white;
margin-top: 25px;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.word-input {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
}