-
Notifications
You must be signed in to change notification settings - Fork 0
/
p4.css
72 lines (60 loc) · 1.11 KB
/
p4.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
h1 {
border: 1px solid black;
font-family: sans-serif;
font-size: 30px;
}
h1:hover {
background-color: #1abc9c;
color: aqua;
}
p {
border: 1px solid grey;
font-size: 20px;
font-family: sans-serif;
font-style: oblique;
font-weight: lighter;
transform: translateX(100px);
}
.TechM {
color: red;
font-weight: bold;
}
.mark {
border: 2px;
font-size: 24px;
font-weight: bold;
}
.mark:hover {
behavior: stop;
}
.para {
display: flexbox;
border: 2px solid black;
padding: 1rem;
background-color: aquamarine;
font-size: larger;
}
.submit {
margin-top: 1rem;
font-size: 18px;
text-align: center;
padding: 2px;
border: 1px solid black;
align-items: center;
height: 24px;
width: auto;
background-color: azure;
border-radius: 4px;
}
.submit:hover {
background-color: aqua;
color: darkblue;
}
body {
background-color: lightblue;
}
.specials {
border: 2px solid black;
padding-left: 1rem;
margin-top: 1rem;
}