-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (89 loc) · 2.06 KB
/
style.css
File metadata and controls
101 lines (89 loc) · 2.06 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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
background-color: rgb(226, 135, 252);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.box {
border: 1px solid purple;
box-shadow: 5px 5px 10px purple;
padding-left: 55px;
padding-right: 55px;
padding-bottom: 20px;
background-color: aliceblue;
border-top-right-radius: 30px;
border-bottom-left-radius: 30px;
border-bottom-right-radius: 10px;
border-top-left-radius: 10px;
}
h2 {
font-size: 40px;
font-weight: bolder;
font-family: Georgia, 'Times New Roman', Times, serif;
padding-bottom: 25px;
padding-top: 10px;
color: blueviolet;
text-align: center;
transition: all 1s;
}
input {
padding: 5px;
font-size: large;
font-family: cursive;
box-shadow: inset -1.5px -1.5px 25px rgba(252, 215, 252, 0.5), inset -1.5px -1.5px 20px rgb(252, 214, 252, 0.5);
margin: 15px;
align-content: center;
}
.btns {
font-size: x-large;
border-radius: 10px;
padding-left: 10px;
padding-right: 10px;
padding-top: 3px;
padding-bottom: 3px;
align-items: center;
font-family: cursive;
margin-top: 10px;
position: relative;
left: 35px;
background-color: rgb(48, 96, 240);
.link{
text-decoration-line: none;
color: black;
}
}
.btns:hover {
background-color: blue;
cursor: pointer;
box-shadow: 2px 2px 2px blueviolet;
}
.btns:active {
scale: 0.95;
}
.fg {
margin-left: 100px;
text-decoration-line: none;
}
.su {
text-decoration-line: none;
color: blueviolet;
font-size: large;
font-weight: 600;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.cup{
font-size: 20px;
font-weight: lighter;
font-family: Georgia, 'Times New Roman', Times, serif;
padding-bottom: 25px;
padding-top: 10px;
color: blueviolet;
text-align: center;
transition: all 1s;
}