This repository was archived by the owner on Feb 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClassExercises.css
More file actions
92 lines (91 loc) · 2.32 KB
/
Copy pathClassExercises.css
File metadata and controls
92 lines (91 loc) · 2.32 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
@import url('https://fonts.googleapis.com/css2?family=Acme&family=Cinzel:wght@900&family=Montserrat+Alternates:wght@600&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Satisfy&display=swap');
body{
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
text-align: justify;
/* background-color: rgb(85, 85, 153); */
background: linear-gradient(to bottom right, #3399ff 0%, #ff6699 100%);
}
h1{
text-align: center;
font-family: 'Cinzel', serif;
text-decoration: underline;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
h3{
font-family: 'Acme', sans-serif;
}
.container{
margin: 100px 200px;
}
.italic{
font-style: italic;
}
.bold{
font-weight: bold;
}
.center{
text-align: center;
}
.textBox{
margin-bottom: 10px;
margin-left: 350px;
width: 300px;
padding: 10px;
text-align: center;
border: 2px solid;
border-radius: 7px;
font-family: 'Montserrat', sans-serif;
background: transparent;
}
::placeholder{
color: rgba(0, 0, 0, 0.6);
font-family: 'Montserrat Alternates', sans-serif;
}
.textBox:focus{
border: 2px solid white;
background: rgba(0, 0, 0, 0.5);
color: white;
box-shadow: 0 4px 8px 0 rgb(0, 255, 21), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
h4{
margin: 10px 20px;
text-decoration: underline;
font-family: 'Satisfy', cursive;
}
.btn{
margin-left: 7px;
padding: 10px;
text-align: center;
border: 2px solid;
border-radius: 7px;
background-color: teal;
font-family: 'Montserrat', sans-serif;
cursor: pointer;
}
.btn:hover{
background-color: black;
color: white;
border: 2px solid white;
box-shadow: 0 4px 8px 0 rgb(0, 201, 252), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.btn-middle{
margin-left: 400px;
padding: 10px;
text-align: center;
border: 2px solid;
border-radius: 7px;
background-color: teal;
font-family: 'Montserrat', sans-serif;
cursor: pointer;
}
.btn-middle:hover{
background-color: black;
color: white;
border: 2px solid white;
box-shadow: 0 4px 8px 0 rgb(0, 201, 252), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.sequence{
margin-left: 300px;
}