-
Notifications
You must be signed in to change notification settings - Fork 0
/
_style_.css
122 lines (103 loc) · 1.94 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
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
112
113
114
115
116
117
118
119
120
121
122
body {
background: no-repeat center url("./images/background.jpg");
backdrop-filter: blur(1px);
padding: 0;
margin: 0;
height: 99.98vh;
width: 99.98vw;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
form {
padding: 12px;
display: grid;
place-items: center;
}
form .content {
display: flex;
gap: 0;
}
form input {
padding: 6px 12px;
font: inherit;
font-size: large;
width: 500px;
border-radius: 6px;
outline: 0;
border: 1px solid #0ca4eb;
background-color: rgba(51, 51, 51, 0.911);
color: white;
}
input:focus {
background-color: rgb(32, 32, 32);
}
#main {
display: flex;
flex-direction: column;
min-height: 90%;
color: white;
justify-content: space-between;
}
#main .main-body {
width: 920px;
margin: 0 auto;
}
.body-header {
padding: 12px 0;
display: flex;
justify-content: space-between;
align-items: center;
color: rgb(212, 212, 212);
}
.body-content {
display: flex;
align-items: flex-end;
gap: 12px;
}
.content-icon {
display: inline-block;
width: 100px;
height: 100px;
}
.content-icon img {
width: 100%;
height: 100%;
}
.content-degree {
padding: 12px;
font-size: 3rem;
font-size: 5rem;
font-weight: normal;
}
.content-degree sup {
line-height: 0;
font-size: x-large;
}
.content-description {
margin-left: 24px;
font-size: xx-large;
text-transform: capitalize;
}
.main-footer {
padding: 17px 0;
display: flex;
justify-content: space-around;
align-items: center;
background-color: rgba(128, 128, 128, 0.514);
}
.footer-section h5 {
line-height: 1;
font-size: large;
border: solid red;
}
.footer-section p {
line-height: normal;
font-size: x-large;
}
.footer-section i {
font-size: 2rem;
display: block;
font-style: normal;
}
.footer-section i.small {
font-size: large;
}