-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (49 loc) · 1.01 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
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background-color: rgb(60, 99, 99);
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
text-align: center;
border-radius: 6px;
border: 6px solid #edeaea;
background-color: #d26a08d4;
border-radius: 10px;
padding: 20px;
width: 400px;
height: 150px;
box-shadow: 0 0 10px rgba(251, 247, 247, 0.1);
}
.container:hover{
border: 15px solid #edeaea;
}
h1 {
color: #f3f2f2;
}
.options {
display: flex;
justify-content: space-around;
margin-top: 30px;
}
.option {
padding: 10px 20px;
text-decoration: none;
color: #fff;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
}
.teacher {
background-color: #3498db;
}
.student {
background-color: #27ae60;
}
.option:hover {
background-color: #293c50;
}