-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
97 lines (81 loc) · 1.51 KB
/
main.css
File metadata and controls
97 lines (81 loc) · 1.51 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
* {
font-family:serif, Helvetica, sans-serif; /* Raleway (font)*/
text-align: center;
font-size: 24px;
text-decoration: none;
margin: 0;
padding: 0;
}
body {
display: block;
background: rgb(255, 255, 255);
font-family:Helvetica, sans-serif;
margin: 0;
padding: 0;
text-align: center;
}
h2 {
color:#fa8072;
padding: 0px;
text-align: center;
height: auto;
}
.bgColor{
background-color:#C4C4C4;
}
.navBar{
position: fixed;
display: flex;
flex-direction: row-reverse;
background-color:#fa8072 !important;
height: auto;
width:100%;
}
.logoImg{
position: absolute;
left: 1%;
top:10%;
}
.button{
background-color: rgba(255, 255, 255, 0);
color:rgba(0, 0, 0, 0.61);
border: none;
text-align:center;
padding: 10px 12px;
text-decoration: none;
display: inline-block;
font-size: 20px;
transition: all 0.15s;
}
.button:hover{
color:rgba(230, 226, 223, 0.856);
border-color: #DDDDDD;
}
.displayBox{
background: #facf7282;
margin: 0px;
padding:10px;
border-radius: 9%;
}
.loginFont b{
font-size: 16px !important;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
padding:50px;
}
.bubble{
position: sticky;
padding: 40px;
margin:20px;
width: 25%;
left:35%;
border-style: double;
transition: all 0.27s;
}
.bubble:hover{
color:rgba(230, 226, 223, 0.856);
border-color: #DDDDDD;
color:rgb(214, 177, 125);
}
.button.campus{
font-size: 24px;
}